diff --git a/src/allotropy/parsers/agilent_gen5/agilent_gen5_structure.py b/src/allotropy/parsers/agilent_gen5/agilent_gen5_structure.py index d84f43e62..cff7ea10e 100644 --- a/src/allotropy/parsers/agilent_gen5/agilent_gen5_structure.py +++ b/src/allotropy/parsers/agilent_gen5/agilent_gen5_structure.py @@ -4,6 +4,7 @@ from dataclasses import dataclass from io import StringIO import math +from pathlib import Path import re import pandas as pd @@ -773,6 +774,7 @@ def _get_sources( def create_metadata(header_data: HeaderData) -> Metadata: + asm_file_identifier = Path(header_data.file_name).with_suffix(".json") return Metadata( device_identifier=NOT_APPLICABLE, model_number=header_data.model_number or NOT_APPLICABLE, @@ -780,7 +782,7 @@ def create_metadata(header_data: HeaderData) -> Metadata: software_name=DEFAULT_SOFTWARE_NAME, software_version=header_data.software_version, file_name=header_data.file_name, - asm_file_identifier=NOT_APPLICABLE, + asm_file_identifier=asm_file_identifier.name, data_system_instance_id=NOT_APPLICABLE, unc_path=NOT_APPLICABLE, ) diff --git a/src/allotropy/parsers/bmg_mars/bmg_mars_structure.py b/src/allotropy/parsers/bmg_mars/bmg_mars_structure.py index a2c8d326f..9e22ee88a 100644 --- a/src/allotropy/parsers/bmg_mars/bmg_mars_structure.py +++ b/src/allotropy/parsers/bmg_mars/bmg_mars_structure.py @@ -2,6 +2,7 @@ from dataclasses import dataclass from enum import Enum +from pathlib import Path import re import pandas as pd @@ -97,9 +98,10 @@ def create(data: SeriesData, header_content: str) -> Header: def create_metadata(header: Header, file_name: str) -> Metadata: + asm_file_identifier = Path(file_name).with_suffix(".json") return Metadata( file_name=file_name, - asm_file_identifier=NOT_APPLICABLE, + asm_file_identifier=asm_file_identifier.name, unc_path=header.path, device_identifier=NOT_APPLICABLE, model_number=NOT_APPLICABLE, diff --git a/src/allotropy/parsers/methodical_mind/methodical_mind_parser.py b/src/allotropy/parsers/methodical_mind/methodical_mind_parser.py index 736654499..3a2dc7ecb 100644 --- a/src/allotropy/parsers/methodical_mind/methodical_mind_parser.py +++ b/src/allotropy/parsers/methodical_mind/methodical_mind_parser.py @@ -30,7 +30,10 @@ class MethodicalMindParser(VendorParser[Data, Model]): def create_data(self, named_file_contents: NamedFileContents) -> Data: reader = MethodicalMindReader(named_file_contents) return Data( - create_metadata(Header.create(reader.plate_headers[0])), + create_metadata( + Header.create(reader.plate_headers[0]), + named_file_contents.original_file_name, + ), create_measurement_groups( [PlateData.create(header, data) for header, data in reader] ), diff --git a/src/allotropy/parsers/methodical_mind/methodical_mind_structure.py b/src/allotropy/parsers/methodical_mind/methodical_mind_structure.py index 1e9680a16..0d6941e40 100644 --- a/src/allotropy/parsers/methodical_mind/methodical_mind_structure.py +++ b/src/allotropy/parsers/methodical_mind/methodical_mind_structure.py @@ -1,6 +1,7 @@ from __future__ import annotations from dataclasses import dataclass +from pathlib import Path import pandas as pd @@ -84,7 +85,8 @@ def create(luminescence: int, location_id: str, well_plate_id: str) -> WellData: ) -def create_metadata(header: Header) -> Metadata: +def create_metadata(header: Header, file_name: str) -> Metadata: + asm_file_identifier = Path(file_name).with_suffix(".json") return Metadata( file_name=header.file_name.rsplit("\\", 1)[-1], unc_path=header.file_name, @@ -93,7 +95,7 @@ def create_metadata(header: Header) -> Metadata: device_identifier=NOT_APPLICABLE, model_number=header.model, equipment_serial_number=header.serial_number, - asm_file_identifier=NOT_APPLICABLE, + asm_file_identifier=asm_file_identifier.name, data_system_instance_id=NOT_APPLICABLE, ) diff --git a/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py b/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py index 5c5904520..32b65edf7 100644 --- a/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py +++ b/src/allotropy/parsers/perkin_elmer_envision/perkin_elmer_envision_structure.py @@ -20,6 +20,7 @@ from collections.abc import Iterator from dataclasses import dataclass from enum import Enum +from pathlib import Path from re import search import numpy as np @@ -693,9 +694,10 @@ def create(reader: CsvReader) -> Data: def create_metadata( software: Software, instrument: Instrument, file_name: str ) -> Metadata: + asm_file_identifier = Path(file_name).with_suffix(".json") return Metadata( file_name=file_name, - asm_file_identifier=NOT_APPLICABLE, + asm_file_identifier=asm_file_identifier.name, unc_path=NOT_APPLICABLE, software_name=software.software_name, software_version=software.software_version, diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/010307_114129_BNCH654563_stdcurve_singleplate01.json b/tests/parsers/agilent_gen5/testdata/absorbance/010307_114129_BNCH654563_stdcurve_singleplate01.json index ca803b321..ca104e12a 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/010307_114129_BNCH654563_stdcurve_singleplate01.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/010307_114129_BNCH654563_stdcurve_singleplate01.json @@ -7208,7 +7208,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "010307_114129_BNCH654563_stdcurve_singleplate01.json", "data system instance identifier": "N/A", "file name": "010307_114129_BNCH654563_stdcurve_singleplate01.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/240411_172731_BNCH2345883_abs450_96well_non_numeric_values.json b/tests/parsers/agilent_gen5/testdata/absorbance/240411_172731_BNCH2345883_abs450_96well_non_numeric_values.json index 98e147361..5eace5832 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/240411_172731_BNCH2345883_abs450_96well_non_numeric_values.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/240411_172731_BNCH2345883_abs450_96well_non_numeric_values.json @@ -4236,7 +4236,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "240411_172731_BNCH2345883_abs450_96well_non_numeric_values.json", "data system instance identifier": "N/A", "file name": "240411_172731_BNCH2345883_abs450_96well_non_numeric_values.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.json b/tests/parsers/agilent_gen5/testdata/absorbance/Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.json index c1fa589d9..7fe60190d 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.json @@ -21720,12 +21720,12 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.json", "data system instance identifier": "N/A", "file name": "Kinetic_Analysis_Mean_Slope_and_Standard_Curve_tab.txt", "UNC path": "N/A", "ASM converter name": "allotropy_agilent_gen5", - "ASM converter version": "0.1.53", + "ASM converter version": "0.1.56", "software name": "Gen5", "software version": "3.12.08" }, diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate.json b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate.json index 5abc92315..27be3dc25 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate.json @@ -37544,7 +37544,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_pathlength_correct_singleplate.json", "data system instance identifier": "N/A", "file name": "endpoint_pathlength_correct_singleplate.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate_no_pm_in_time.json b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate_no_pm_in_time.json new file mode 100644 index 000000000..e37b1c273 --- /dev/null +++ b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_pathlength_correct_singleplate_no_pm_in_time.json @@ -0,0 +1,37562 @@ +{ + "$asm.manifest": "http://purl.allotrope.org/manifests/plate-reader/REC/2024/06/plate-reader.manifest", + "plate reader aggregate document": { + "plate reader document": [ + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_0", + "sample document": { + "sample identifier": "SPL1", + "location identifier": "A1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_12", + "sample document": { + "sample identifier": "SPL1", + "location identifier": "A1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_24", + "sample document": { + "sample identifier": "SPL1", + "location identifier": "A1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.626, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_36", + "sample document": { + "sample identifier": "SPL1", + "location identifier": "A1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.345, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_48", + "sample document": { + "sample identifier": "SPL1", + "location identifier": "A1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_1", + "sample document": { + "sample identifier": "SPL9", + "location identifier": "A2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_13", + "sample document": { + "sample identifier": "SPL9", + "location identifier": "A2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_25", + "sample document": { + "sample identifier": "SPL9", + "location identifier": "A2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.56, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_37", + "sample document": { + "sample identifier": "SPL9", + "location identifier": "A2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.31, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_49", + "sample document": { + "sample identifier": "SPL9", + "location identifier": "A2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.309, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_2", + "sample document": { + "sample identifier": "SPL17", + "location identifier": "A3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_14", + "sample document": { + "sample identifier": "SPL17", + "location identifier": "A3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_26", + "sample document": { + "sample identifier": "SPL17", + "location identifier": "A3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.481, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_38", + "sample document": { + "sample identifier": "SPL17", + "location identifier": "A3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.272, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_50", + "sample document": { + "sample identifier": "SPL17", + "location identifier": "A3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.275, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_3", + "sample document": { + "sample identifier": "SPL25", + "location identifier": "A4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_15", + "sample document": { + "sample identifier": "SPL25", + "location identifier": "A4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_27", + "sample document": { + "sample identifier": "SPL25", + "location identifier": "A4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.554, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_39", + "sample document": { + "sample identifier": "SPL25", + "location identifier": "A4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.31, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_51", + "sample document": { + "sample identifier": "SPL25", + "location identifier": "A4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_4", + "sample document": { + "sample identifier": "SPL33", + "location identifier": "A5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_16", + "sample document": { + "sample identifier": "SPL33", + "location identifier": "A5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_28", + "sample document": { + "sample identifier": "SPL33", + "location identifier": "A5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.416, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_40", + "sample document": { + "sample identifier": "SPL33", + "location identifier": "A5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.237, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_52", + "sample document": { + "sample identifier": "SPL33", + "location identifier": "A5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.244, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_5", + "sample document": { + "sample identifier": "SPL41", + "location identifier": "A6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_17", + "sample document": { + "sample identifier": "SPL41", + "location identifier": "A6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_29", + "sample document": { + "sample identifier": "SPL41", + "location identifier": "A6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.587, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_41", + "sample document": { + "sample identifier": "SPL41", + "location identifier": "A6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_53", + "sample document": { + "sample identifier": "SPL41", + "location identifier": "A6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.324, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_6", + "sample document": { + "sample identifier": "SPL49", + "location identifier": "A7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_18", + "sample document": { + "sample identifier": "SPL49", + "location identifier": "A7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_30", + "sample document": { + "sample identifier": "SPL49", + "location identifier": "A7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.522, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_42", + "sample document": { + "sample identifier": "SPL49", + "location identifier": "A7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.294, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_54", + "sample document": { + "sample identifier": "SPL49", + "location identifier": "A7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.291, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_7", + "sample document": { + "sample identifier": "SPL57", + "location identifier": "A8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_19", + "sample document": { + "sample identifier": "SPL57", + "location identifier": "A8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_31", + "sample document": { + "sample identifier": "SPL57", + "location identifier": "A8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.487, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_43", + "sample document": { + "sample identifier": "SPL57", + "location identifier": "A8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_55", + "sample document": { + "sample identifier": "SPL57", + "location identifier": "A8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.286, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_8", + "sample document": { + "sample identifier": "SPL65", + "location identifier": "A9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_20", + "sample document": { + "sample identifier": "SPL65", + "location identifier": "A9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_32", + "sample document": { + "sample identifier": "SPL65", + "location identifier": "A9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.574, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_44", + "sample document": { + "sample identifier": "SPL65", + "location identifier": "A9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.318, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_56", + "sample document": { + "sample identifier": "SPL65", + "location identifier": "A9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_9", + "sample document": { + "sample identifier": "SPL73", + "location identifier": "A10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_21", + "sample document": { + "sample identifier": "SPL73", + "location identifier": "A10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.034, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_33", + "sample document": { + "sample identifier": "SPL73", + "location identifier": "A10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.496, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_45", + "sample document": { + "sample identifier": "SPL73", + "location identifier": "A10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.28, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_57", + "sample document": { + "sample identifier": "SPL73", + "location identifier": "A10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_10", + "sample document": { + "sample identifier": "SPL81", + "location identifier": "A11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_22", + "sample document": { + "sample identifier": "SPL81", + "location identifier": "A11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_34", + "sample document": { + "sample identifier": "SPL81", + "location identifier": "A11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.605, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_46", + "sample document": { + "sample identifier": "SPL81", + "location identifier": "A11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.356, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_58", + "sample document": { + "sample identifier": "SPL81", + "location identifier": "A11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.366, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_11", + "sample document": { + "sample identifier": "SPL89", + "location identifier": "A12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_23", + "sample document": { + "sample identifier": "SPL89", + "location identifier": "A12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_35", + "sample document": { + "sample identifier": "SPL89", + "location identifier": "A12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.65, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_47", + "sample document": { + "sample identifier": "SPL89", + "location identifier": "A12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.359, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_59", + "sample document": { + "sample identifier": "SPL89", + "location identifier": "A12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.347, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_60", + "sample document": { + "sample identifier": "SPL2", + "location identifier": "B1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_72", + "sample document": { + "sample identifier": "SPL2", + "location identifier": "B1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_84", + "sample document": { + "sample identifier": "SPL2", + "location identifier": "B1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.628, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_96", + "sample document": { + "sample identifier": "SPL2", + "location identifier": "B1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.349, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_108", + "sample document": { + "sample identifier": "SPL2", + "location identifier": "B1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.346, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_61", + "sample document": { + "sample identifier": "SPL10", + "location identifier": "B2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_73", + "sample document": { + "sample identifier": "SPL10", + "location identifier": "B2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_85", + "sample document": { + "sample identifier": "SPL10", + "location identifier": "B2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.538, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_97", + "sample document": { + "sample identifier": "SPL10", + "location identifier": "B2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.303, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_109", + "sample document": { + "sample identifier": "SPL10", + "location identifier": "B2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.302, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_62", + "sample document": { + "sample identifier": "SPL18", + "location identifier": "B3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_74", + "sample document": { + "sample identifier": "SPL18", + "location identifier": "B3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_86", + "sample document": { + "sample identifier": "SPL18", + "location identifier": "B3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.521, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_98", + "sample document": { + "sample identifier": "SPL18", + "location identifier": "B3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.294, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_110", + "sample document": { + "sample identifier": "SPL18", + "location identifier": "B3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.301, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_63", + "sample document": { + "sample identifier": "SPL26", + "location identifier": "B4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_75", + "sample document": { + "sample identifier": "SPL26", + "location identifier": "B4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_87", + "sample document": { + "sample identifier": "SPL26", + "location identifier": "B4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.557, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_99", + "sample document": { + "sample identifier": "SPL26", + "location identifier": "B4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.316, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_111", + "sample document": { + "sample identifier": "SPL26", + "location identifier": "B4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.337, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_64", + "sample document": { + "sample identifier": "SPL34", + "location identifier": "B5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_76", + "sample document": { + "sample identifier": "SPL34", + "location identifier": "B5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_88", + "sample document": { + "sample identifier": "SPL34", + "location identifier": "B5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.484, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_100", + "sample document": { + "sample identifier": "SPL34", + "location identifier": "B5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.273, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_112", + "sample document": { + "sample identifier": "SPL34", + "location identifier": "B5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.271, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_65", + "sample document": { + "sample identifier": "SPL42", + "location identifier": "B6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_77", + "sample document": { + "sample identifier": "SPL42", + "location identifier": "B6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_89", + "sample document": { + "sample identifier": "SPL42", + "location identifier": "B6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.551, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_101", + "sample document": { + "sample identifier": "SPL42", + "location identifier": "B6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.31, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_113", + "sample document": { + "sample identifier": "SPL42", + "location identifier": "B6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.303, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_66", + "sample document": { + "sample identifier": "SPL50", + "location identifier": "B7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_78", + "sample document": { + "sample identifier": "SPL50", + "location identifier": "B7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_90", + "sample document": { + "sample identifier": "SPL50", + "location identifier": "B7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.595, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_102", + "sample document": { + "sample identifier": "SPL50", + "location identifier": "B7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.334, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_114", + "sample document": { + "sample identifier": "SPL50", + "location identifier": "B7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.332, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_67", + "sample document": { + "sample identifier": "SPL58", + "location identifier": "B8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_79", + "sample document": { + "sample identifier": "SPL58", + "location identifier": "B8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_91", + "sample document": { + "sample identifier": "SPL58", + "location identifier": "B8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.482, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_103", + "sample document": { + "sample identifier": "SPL58", + "location identifier": "B8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.273, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_115", + "sample document": { + "sample identifier": "SPL58", + "location identifier": "B8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.274, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_68", + "sample document": { + "sample identifier": "SPL66", + "location identifier": "B9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_80", + "sample document": { + "sample identifier": "SPL66", + "location identifier": "B9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_92", + "sample document": { + "sample identifier": "SPL66", + "location identifier": "B9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.577, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_104", + "sample document": { + "sample identifier": "SPL66", + "location identifier": "B9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.325, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_116", + "sample document": { + "sample identifier": "SPL66", + "location identifier": "B9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.32, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_69", + "sample document": { + "sample identifier": "SPL74", + "location identifier": "B10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_81", + "sample document": { + "sample identifier": "SPL74", + "location identifier": "B10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_93", + "sample document": { + "sample identifier": "SPL74", + "location identifier": "B10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.672, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_105", + "sample document": { + "sample identifier": "SPL74", + "location identifier": "B10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.374, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_117", + "sample document": { + "sample identifier": "SPL74", + "location identifier": "B10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.365, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_70", + "sample document": { + "sample identifier": "SPL82", + "location identifier": "B11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_82", + "sample document": { + "sample identifier": "SPL82", + "location identifier": "B11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_94", + "sample document": { + "sample identifier": "SPL82", + "location identifier": "B11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.621, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_106", + "sample document": { + "sample identifier": "SPL82", + "location identifier": "B11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.348, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_118", + "sample document": { + "sample identifier": "SPL82", + "location identifier": "B11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.354, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_71", + "sample document": { + "sample identifier": "SPL90", + "location identifier": "B12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_83", + "sample document": { + "sample identifier": "SPL90", + "location identifier": "B12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.04, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_95", + "sample document": { + "sample identifier": "SPL90", + "location identifier": "B12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.564, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_107", + "sample document": { + "sample identifier": "SPL90", + "location identifier": "B12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.316, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_119", + "sample document": { + "sample identifier": "SPL90", + "location identifier": "B12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.341, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_120", + "sample document": { + "sample identifier": "SPL3", + "location identifier": "C1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_132", + "sample document": { + "sample identifier": "SPL3", + "location identifier": "C1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_144", + "sample document": { + "sample identifier": "SPL3", + "location identifier": "C1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.676, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_156", + "sample document": { + "sample identifier": "SPL3", + "location identifier": "C1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.37, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_168", + "sample document": { + "sample identifier": "SPL3", + "location identifier": "C1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.359, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_121", + "sample document": { + "sample identifier": "SPL11", + "location identifier": "C2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_133", + "sample document": { + "sample identifier": "SPL11", + "location identifier": "C2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_145", + "sample document": { + "sample identifier": "SPL11", + "location identifier": "C2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.61, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_157", + "sample document": { + "sample identifier": "SPL11", + "location identifier": "C2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.346, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_169", + "sample document": { + "sample identifier": "SPL11", + "location identifier": "C2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.385, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_122", + "sample document": { + "sample identifier": "SPL19", + "location identifier": "C3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_134", + "sample document": { + "sample identifier": "SPL19", + "location identifier": "C3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_146", + "sample document": { + "sample identifier": "SPL19", + "location identifier": "C3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.747, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_158", + "sample document": { + "sample identifier": "SPL19", + "location identifier": "C3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.41, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_170", + "sample document": { + "sample identifier": "SPL19", + "location identifier": "C3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.404, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_123", + "sample document": { + "sample identifier": "SPL27", + "location identifier": "C4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_135", + "sample document": { + "sample identifier": "SPL27", + "location identifier": "C4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_147", + "sample document": { + "sample identifier": "SPL27", + "location identifier": "C4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.609, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_159", + "sample document": { + "sample identifier": "SPL27", + "location identifier": "C4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.337, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_171", + "sample document": { + "sample identifier": "SPL27", + "location identifier": "C4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.326, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_124", + "sample document": { + "sample identifier": "SPL35", + "location identifier": "C5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_136", + "sample document": { + "sample identifier": "SPL35", + "location identifier": "C5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_148", + "sample document": { + "sample identifier": "SPL35", + "location identifier": "C5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.544, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_160", + "sample document": { + "sample identifier": "SPL35", + "location identifier": "C5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.313, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_172", + "sample document": { + "sample identifier": "SPL35", + "location identifier": "C5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.347, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_125", + "sample document": { + "sample identifier": "SPL43", + "location identifier": "C6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_137", + "sample document": { + "sample identifier": "SPL43", + "location identifier": "C6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_149", + "sample document": { + "sample identifier": "SPL43", + "location identifier": "C6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_161", + "sample document": { + "sample identifier": "SPL43", + "location identifier": "C6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_173", + "sample document": { + "sample identifier": "SPL43", + "location identifier": "C6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_126", + "sample document": { + "sample identifier": "SPL51", + "location identifier": "C7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_138", + "sample document": { + "sample identifier": "SPL51", + "location identifier": "C7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_150", + "sample document": { + "sample identifier": "SPL51", + "location identifier": "C7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.073, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_162", + "sample document": { + "sample identifier": "SPL51", + "location identifier": "C7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_174", + "sample document": { + "sample identifier": "SPL51", + "location identifier": "C7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.1, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_127", + "sample document": { + "sample identifier": "SPL59", + "location identifier": "C8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_139", + "sample document": { + "sample identifier": "SPL59", + "location identifier": "C8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_151", + "sample document": { + "sample identifier": "SPL59", + "location identifier": "C8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_163", + "sample document": { + "sample identifier": "SPL59", + "location identifier": "C8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_175", + "sample document": { + "sample identifier": "SPL59", + "location identifier": "C8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.096, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_128", + "sample document": { + "sample identifier": "SPL67", + "location identifier": "C9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_140", + "sample document": { + "sample identifier": "SPL67", + "location identifier": "C9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_152", + "sample document": { + "sample identifier": "SPL67", + "location identifier": "C9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_164", + "sample document": { + "sample identifier": "SPL67", + "location identifier": "C9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_176", + "sample document": { + "sample identifier": "SPL67", + "location identifier": "C9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_129", + "sample document": { + "sample identifier": "SPL75", + "location identifier": "C10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_141", + "sample document": { + "sample identifier": "SPL75", + "location identifier": "C10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_153", + "sample document": { + "sample identifier": "SPL75", + "location identifier": "C10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_165", + "sample document": { + "sample identifier": "SPL75", + "location identifier": "C10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_177", + "sample document": { + "sample identifier": "SPL75", + "location identifier": "C10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.094, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_130", + "sample document": { + "sample identifier": "SPL83", + "location identifier": "C11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_142", + "sample document": { + "sample identifier": "SPL83", + "location identifier": "C11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_154", + "sample document": { + "sample identifier": "SPL83", + "location identifier": "C11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.07, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_166", + "sample document": { + "sample identifier": "SPL83", + "location identifier": "C11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_178", + "sample document": { + "sample identifier": "SPL83", + "location identifier": "C11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_131", + "sample document": { + "sample identifier": "SPL91", + "location identifier": "C12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.062, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_143", + "sample document": { + "sample identifier": "SPL91", + "location identifier": "C12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_155", + "sample document": { + "sample identifier": "SPL91", + "location identifier": "C12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_167", + "sample document": { + "sample identifier": "SPL91", + "location identifier": "C12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_179", + "sample document": { + "sample identifier": "SPL91", + "location identifier": "C12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_180", + "sample document": { + "sample identifier": "SPL4", + "location identifier": "D1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_192", + "sample document": { + "sample identifier": "SPL4", + "location identifier": "D1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_204", + "sample document": { + "sample identifier": "SPL4", + "location identifier": "D1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.066, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_216", + "sample document": { + "sample identifier": "SPL4", + "location identifier": "D1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_228", + "sample document": { + "sample identifier": "SPL4", + "location identifier": "D1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.092, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_181", + "sample document": { + "sample identifier": "SPL12", + "location identifier": "D2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_193", + "sample document": { + "sample identifier": "SPL12", + "location identifier": "D2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_205", + "sample document": { + "sample identifier": "SPL12", + "location identifier": "D2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.64, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_217", + "sample document": { + "sample identifier": "SPL12", + "location identifier": "D2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.355, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_229", + "sample document": { + "sample identifier": "SPL12", + "location identifier": "D2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.357, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_182", + "sample document": { + "sample identifier": "SPL20", + "location identifier": "D3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_194", + "sample document": { + "sample identifier": "SPL20", + "location identifier": "D3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_206", + "sample document": { + "sample identifier": "SPL20", + "location identifier": "D3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.654, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_218", + "sample document": { + "sample identifier": "SPL20", + "location identifier": "D3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.36, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_230", + "sample document": { + "sample identifier": "SPL20", + "location identifier": "D3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.348, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_183", + "sample document": { + "sample identifier": "SPL28", + "location identifier": "D4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_195", + "sample document": { + "sample identifier": "SPL28", + "location identifier": "D4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_207", + "sample document": { + "sample identifier": "SPL28", + "location identifier": "D4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.468, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_219", + "sample document": { + "sample identifier": "SPL28", + "location identifier": "D4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_231", + "sample document": { + "sample identifier": "SPL28", + "location identifier": "D4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.346, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_184", + "sample document": { + "sample identifier": "SPL36", + "location identifier": "D5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_196", + "sample document": { + "sample identifier": "SPL36", + "location identifier": "D5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_208", + "sample document": { + "sample identifier": "SPL36", + "location identifier": "D5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.45, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_220", + "sample document": { + "sample identifier": "SPL36", + "location identifier": "D5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.257, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_232", + "sample document": { + "sample identifier": "SPL36", + "location identifier": "D5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.263, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_185", + "sample document": { + "sample identifier": "SPL44", + "location identifier": "D6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_197", + "sample document": { + "sample identifier": "SPL44", + "location identifier": "D6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_209", + "sample document": { + "sample identifier": "SPL44", + "location identifier": "D6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.63, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_221", + "sample document": { + "sample identifier": "SPL44", + "location identifier": "D6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.35, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_233", + "sample document": { + "sample identifier": "SPL44", + "location identifier": "D6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.344, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_186", + "sample document": { + "sample identifier": "SPL52", + "location identifier": "D7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_198", + "sample document": { + "sample identifier": "SPL52", + "location identifier": "D7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_210", + "sample document": { + "sample identifier": "SPL52", + "location identifier": "D7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.548, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_222", + "sample document": { + "sample identifier": "SPL52", + "location identifier": "D7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_234", + "sample document": { + "sample identifier": "SPL52", + "location identifier": "D7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.332, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_187", + "sample document": { + "sample identifier": "SPL60", + "location identifier": "D8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_199", + "sample document": { + "sample identifier": "SPL60", + "location identifier": "D8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_211", + "sample document": { + "sample identifier": "SPL60", + "location identifier": "D8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.559, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_223", + "sample document": { + "sample identifier": "SPL60", + "location identifier": "D8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.317, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_235", + "sample document": { + "sample identifier": "SPL60", + "location identifier": "D8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.3, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_188", + "sample document": { + "sample identifier": "SPL68", + "location identifier": "D9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_200", + "sample document": { + "sample identifier": "SPL68", + "location identifier": "D9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_212", + "sample document": { + "sample identifier": "SPL68", + "location identifier": "D9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.582, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_224", + "sample document": { + "sample identifier": "SPL68", + "location identifier": "D9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.321, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_236", + "sample document": { + "sample identifier": "SPL68", + "location identifier": "D9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.322, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_189", + "sample document": { + "sample identifier": "SPL76", + "location identifier": "D10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_201", + "sample document": { + "sample identifier": "SPL76", + "location identifier": "D10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_213", + "sample document": { + "sample identifier": "SPL76", + "location identifier": "D10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.588, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_225", + "sample document": { + "sample identifier": "SPL76", + "location identifier": "D10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.33, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_237", + "sample document": { + "sample identifier": "SPL76", + "location identifier": "D10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.328, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_190", + "sample document": { + "sample identifier": "SPL84", + "location identifier": "D11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_202", + "sample document": { + "sample identifier": "SPL84", + "location identifier": "D11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_214", + "sample document": { + "sample identifier": "SPL84", + "location identifier": "D11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.657, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_226", + "sample document": { + "sample identifier": "SPL84", + "location identifier": "D11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.364, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_238", + "sample document": { + "sample identifier": "SPL84", + "location identifier": "D11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.361, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_191", + "sample document": { + "sample identifier": "SPL92", + "location identifier": "D12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_203", + "sample document": { + "sample identifier": "SPL92", + "location identifier": "D12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_215", + "sample document": { + "sample identifier": "SPL92", + "location identifier": "D12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.596, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_227", + "sample document": { + "sample identifier": "SPL92", + "location identifier": "D12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.339, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_239", + "sample document": { + "sample identifier": "SPL92", + "location identifier": "D12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.356, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_240", + "sample document": { + "sample identifier": "SPL5", + "location identifier": "E1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_252", + "sample document": { + "sample identifier": "SPL5", + "location identifier": "E1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_264", + "sample document": { + "sample identifier": "SPL5", + "location identifier": "E1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.638, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_276", + "sample document": { + "sample identifier": "SPL5", + "location identifier": "E1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.353, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_288", + "sample document": { + "sample identifier": "SPL5", + "location identifier": "E1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.349, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_241", + "sample document": { + "sample identifier": "SPL13", + "location identifier": "E2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_253", + "sample document": { + "sample identifier": "SPL13", + "location identifier": "E2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_265", + "sample document": { + "sample identifier": "SPL13", + "location identifier": "E2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.541, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_277", + "sample document": { + "sample identifier": "SPL13", + "location identifier": "E2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.31, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_289", + "sample document": { + "sample identifier": "SPL13", + "location identifier": "E2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.339, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_242", + "sample document": { + "sample identifier": "SPL21", + "location identifier": "E3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_254", + "sample document": { + "sample identifier": "SPL21", + "location identifier": "E3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_266", + "sample document": { + "sample identifier": "SPL21", + "location identifier": "E3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.585, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_278", + "sample document": { + "sample identifier": "SPL21", + "location identifier": "E3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.324, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_290", + "sample document": { + "sample identifier": "SPL21", + "location identifier": "E3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.32, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_243", + "sample document": { + "sample identifier": "SPL29", + "location identifier": "E4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_255", + "sample document": { + "sample identifier": "SPL29", + "location identifier": "E4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_267", + "sample document": { + "sample identifier": "SPL29", + "location identifier": "E4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.466, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_279", + "sample document": { + "sample identifier": "SPL29", + "location identifier": "E4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.265, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_291", + "sample document": { + "sample identifier": "SPL29", + "location identifier": "E4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.273, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_244", + "sample document": { + "sample identifier": "SPL37", + "location identifier": "E5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_256", + "sample document": { + "sample identifier": "SPL37", + "location identifier": "E5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_268", + "sample document": { + "sample identifier": "SPL37", + "location identifier": "E5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.553, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_280", + "sample document": { + "sample identifier": "SPL37", + "location identifier": "E5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.309, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_292", + "sample document": { + "sample identifier": "SPL37", + "location identifier": "E5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_245", + "sample document": { + "sample identifier": "SPL45", + "location identifier": "E6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_257", + "sample document": { + "sample identifier": "SPL45", + "location identifier": "E6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_269", + "sample document": { + "sample identifier": "SPL45", + "location identifier": "E6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.489, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_281", + "sample document": { + "sample identifier": "SPL45", + "location identifier": "E6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.278, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_293", + "sample document": { + "sample identifier": "SPL45", + "location identifier": "E6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.278, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_246", + "sample document": { + "sample identifier": "SPL53", + "location identifier": "E7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_258", + "sample document": { + "sample identifier": "SPL53", + "location identifier": "E7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_270", + "sample document": { + "sample identifier": "SPL53", + "location identifier": "E7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.605, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_282", + "sample document": { + "sample identifier": "SPL53", + "location identifier": "E7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.338, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_294", + "sample document": { + "sample identifier": "SPL53", + "location identifier": "E7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.335, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_247", + "sample document": { + "sample identifier": "SPL61", + "location identifier": "E8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_259", + "sample document": { + "sample identifier": "SPL61", + "location identifier": "E8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_271", + "sample document": { + "sample identifier": "SPL61", + "location identifier": "E8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.43, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_283", + "sample document": { + "sample identifier": "SPL61", + "location identifier": "E8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.246, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_295", + "sample document": { + "sample identifier": "SPL61", + "location identifier": "E8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.257, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_248", + "sample document": { + "sample identifier": "SPL69", + "location identifier": "E9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.052, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_260", + "sample document": { + "sample identifier": "SPL69", + "location identifier": "E9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_272", + "sample document": { + "sample identifier": "SPL69", + "location identifier": "E9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.601, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_284", + "sample document": { + "sample identifier": "SPL69", + "location identifier": "E9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.333, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_296", + "sample document": { + "sample identifier": "SPL69", + "location identifier": "E9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.33, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_249", + "sample document": { + "sample identifier": "SPL77", + "location identifier": "E10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_261", + "sample document": { + "sample identifier": "SPL77", + "location identifier": "E10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_273", + "sample document": { + "sample identifier": "SPL77", + "location identifier": "E10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.591, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_285", + "sample document": { + "sample identifier": "SPL77", + "location identifier": "E10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.33, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_297", + "sample document": { + "sample identifier": "SPL77", + "location identifier": "E10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_250", + "sample document": { + "sample identifier": "SPL85", + "location identifier": "E11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_262", + "sample document": { + "sample identifier": "SPL85", + "location identifier": "E11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_274", + "sample document": { + "sample identifier": "SPL85", + "location identifier": "E11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.457, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_286", + "sample document": { + "sample identifier": "SPL85", + "location identifier": "E11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.256, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_298", + "sample document": { + "sample identifier": "SPL85", + "location identifier": "E11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.272, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_251", + "sample document": { + "sample identifier": "SPL93", + "location identifier": "E12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_263", + "sample document": { + "sample identifier": "SPL93", + "location identifier": "E12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_275", + "sample document": { + "sample identifier": "SPL93", + "location identifier": "E12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.497, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_287", + "sample document": { + "sample identifier": "SPL93", + "location identifier": "E12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.281, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_299", + "sample document": { + "sample identifier": "SPL93", + "location identifier": "E12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.28, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_300", + "sample document": { + "sample identifier": "SPL6", + "location identifier": "F1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_312", + "sample document": { + "sample identifier": "SPL6", + "location identifier": "F1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_324", + "sample document": { + "sample identifier": "SPL6", + "location identifier": "F1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.063, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_336", + "sample document": { + "sample identifier": "SPL6", + "location identifier": "F1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_348", + "sample document": { + "sample identifier": "SPL6", + "location identifier": "F1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.09, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_301", + "sample document": { + "sample identifier": "SPL14", + "location identifier": "F2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_313", + "sample document": { + "sample identifier": "SPL14", + "location identifier": "F2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_325", + "sample document": { + "sample identifier": "SPL14", + "location identifier": "F2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.509, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_337", + "sample document": { + "sample identifier": "SPL14", + "location identifier": "F2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.283, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_349", + "sample document": { + "sample identifier": "SPL14", + "location identifier": "F2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.284, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_302", + "sample document": { + "sample identifier": "SPL22", + "location identifier": "F3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_314", + "sample document": { + "sample identifier": "SPL22", + "location identifier": "F3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_326", + "sample document": { + "sample identifier": "SPL22", + "location identifier": "F3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.454, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_338", + "sample document": { + "sample identifier": "SPL22", + "location identifier": "F3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.26, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_350", + "sample document": { + "sample identifier": "SPL22", + "location identifier": "F3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.268, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_303", + "sample document": { + "sample identifier": "SPL30", + "location identifier": "F4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_315", + "sample document": { + "sample identifier": "SPL30", + "location identifier": "F4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_327", + "sample document": { + "sample identifier": "SPL30", + "location identifier": "F4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.452, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_339", + "sample document": { + "sample identifier": "SPL30", + "location identifier": "F4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.251, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_351", + "sample document": { + "sample identifier": "SPL30", + "location identifier": "F4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.255, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_304", + "sample document": { + "sample identifier": "SPL38", + "location identifier": "F5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_316", + "sample document": { + "sample identifier": "SPL38", + "location identifier": "F5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_328", + "sample document": { + "sample identifier": "SPL38", + "location identifier": "F5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.627, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_340", + "sample document": { + "sample identifier": "SPL38", + "location identifier": "F5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.349, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_352", + "sample document": { + "sample identifier": "SPL38", + "location identifier": "F5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.347, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_305", + "sample document": { + "sample identifier": "SPL46", + "location identifier": "F6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_317", + "sample document": { + "sample identifier": "SPL46", + "location identifier": "F6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_329", + "sample document": { + "sample identifier": "SPL46", + "location identifier": "F6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.405, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_341", + "sample document": { + "sample identifier": "SPL46", + "location identifier": "F6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.23, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_353", + "sample document": { + "sample identifier": "SPL46", + "location identifier": "F6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.238, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_306", + "sample document": { + "sample identifier": "SPL54", + "location identifier": "F7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_318", + "sample document": { + "sample identifier": "SPL54", + "location identifier": "F7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_330", + "sample document": { + "sample identifier": "SPL54", + "location identifier": "F7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.305, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_342", + "sample document": { + "sample identifier": "SPL54", + "location identifier": "F7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.176, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_354", + "sample document": { + "sample identifier": "SPL54", + "location identifier": "F7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.207, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_307", + "sample document": { + "sample identifier": "SPL62", + "location identifier": "F8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_319", + "sample document": { + "sample identifier": "SPL62", + "location identifier": "F8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_331", + "sample document": { + "sample identifier": "SPL62", + "location identifier": "F8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.395, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_343", + "sample document": { + "sample identifier": "SPL62", + "location identifier": "F8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.227, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_355", + "sample document": { + "sample identifier": "SPL62", + "location identifier": "F8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.233, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_308", + "sample document": { + "sample identifier": "SPL70", + "location identifier": "F9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_320", + "sample document": { + "sample identifier": "SPL70", + "location identifier": "F9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_332", + "sample document": { + "sample identifier": "SPL70", + "location identifier": "F9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.462, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_344", + "sample document": { + "sample identifier": "SPL70", + "location identifier": "F9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.265, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_356", + "sample document": { + "sample identifier": "SPL70", + "location identifier": "F9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.274, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_309", + "sample document": { + "sample identifier": "SPL78", + "location identifier": "F10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_321", + "sample document": { + "sample identifier": "SPL78", + "location identifier": "F10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_333", + "sample document": { + "sample identifier": "SPL78", + "location identifier": "F10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.448, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_345", + "sample document": { + "sample identifier": "SPL78", + "location identifier": "F10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.26, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_357", + "sample document": { + "sample identifier": "SPL78", + "location identifier": "F10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_310", + "sample document": { + "sample identifier": "SPL86", + "location identifier": "F11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_322", + "sample document": { + "sample identifier": "SPL86", + "location identifier": "F11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_334", + "sample document": { + "sample identifier": "SPL86", + "location identifier": "F11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.49, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_346", + "sample document": { + "sample identifier": "SPL86", + "location identifier": "F11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.278, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_358", + "sample document": { + "sample identifier": "SPL86", + "location identifier": "F11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.289, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_311", + "sample document": { + "sample identifier": "SPL94", + "location identifier": "F12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_323", + "sample document": { + "sample identifier": "SPL94", + "location identifier": "F12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_335", + "sample document": { + "sample identifier": "SPL94", + "location identifier": "F12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.528, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_347", + "sample document": { + "sample identifier": "SPL94", + "location identifier": "F12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.296, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_359", + "sample document": { + "sample identifier": "SPL94", + "location identifier": "F12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.293, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_360", + "sample document": { + "sample identifier": "SPL7", + "location identifier": "G1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_372", + "sample document": { + "sample identifier": "SPL7", + "location identifier": "G1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_384", + "sample document": { + "sample identifier": "SPL7", + "location identifier": "G1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_396", + "sample document": { + "sample identifier": "SPL7", + "location identifier": "G1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.049, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_408", + "sample document": { + "sample identifier": "SPL7", + "location identifier": "G1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_361", + "sample document": { + "sample identifier": "SPL15", + "location identifier": "G2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_373", + "sample document": { + "sample identifier": "SPL15", + "location identifier": "G2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_385", + "sample document": { + "sample identifier": "SPL15", + "location identifier": "G2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.502, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_397", + "sample document": { + "sample identifier": "SPL15", + "location identifier": "G2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.281, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_409", + "sample document": { + "sample identifier": "SPL15", + "location identifier": "G2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.286, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_362", + "sample document": { + "sample identifier": "SPL23", + "location identifier": "G3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_374", + "sample document": { + "sample identifier": "SPL23", + "location identifier": "G3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_386", + "sample document": { + "sample identifier": "SPL23", + "location identifier": "G3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.068, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_398", + "sample document": { + "sample identifier": "SPL23", + "location identifier": "G3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.051, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_410", + "sample document": { + "sample identifier": "SPL23", + "location identifier": "G3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.093, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_363", + "sample document": { + "sample identifier": "SPL31", + "location identifier": "G4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.061, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_375", + "sample document": { + "sample identifier": "SPL31", + "location identifier": "G4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_387", + "sample document": { + "sample identifier": "SPL31", + "location identifier": "G4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.071, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_399", + "sample document": { + "sample identifier": "SPL31", + "location identifier": "G4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_411", + "sample document": { + "sample identifier": "SPL31", + "location identifier": "G4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.097, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_364", + "sample document": { + "sample identifier": "SPL39", + "location identifier": "G5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_376", + "sample document": { + "sample identifier": "SPL39", + "location identifier": "G5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_388", + "sample document": { + "sample identifier": "SPL39", + "location identifier": "G5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.369, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_400", + "sample document": { + "sample identifier": "SPL39", + "location identifier": "G5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.215, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_412", + "sample document": { + "sample identifier": "SPL39", + "location identifier": "G5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.24, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_365", + "sample document": { + "sample identifier": "SPL47", + "location identifier": "G6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_377", + "sample document": { + "sample identifier": "SPL47", + "location identifier": "G6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_389", + "sample document": { + "sample identifier": "SPL47", + "location identifier": "G6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.072, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_401", + "sample document": { + "sample identifier": "SPL47", + "location identifier": "G6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_413", + "sample document": { + "sample identifier": "SPL47", + "location identifier": "G6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.107, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_366", + "sample document": { + "sample identifier": "SPL55", + "location identifier": "G7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_378", + "sample document": { + "sample identifier": "SPL55", + "location identifier": "G7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_390", + "sample document": { + "sample identifier": "SPL55", + "location identifier": "G7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.424, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_402", + "sample document": { + "sample identifier": "SPL55", + "location identifier": "G7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.246, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_414", + "sample document": { + "sample identifier": "SPL55", + "location identifier": "G7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.279, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_367", + "sample document": { + "sample identifier": "SPL63", + "location identifier": "G8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_379", + "sample document": { + "sample identifier": "SPL63", + "location identifier": "G8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_391", + "sample document": { + "sample identifier": "SPL63", + "location identifier": "G8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.391, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_403", + "sample document": { + "sample identifier": "SPL63", + "location identifier": "G8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.227, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_415", + "sample document": { + "sample identifier": "SPL63", + "location identifier": "G8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.256, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_368", + "sample document": { + "sample identifier": "SPL71", + "location identifier": "G9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_380", + "sample document": { + "sample identifier": "SPL71", + "location identifier": "G9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_392", + "sample document": { + "sample identifier": "SPL71", + "location identifier": "G9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.461, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_404", + "sample document": { + "sample identifier": "SPL71", + "location identifier": "G9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.262, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_416", + "sample document": { + "sample identifier": "SPL71", + "location identifier": "G9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_369", + "sample document": { + "sample identifier": "SPL79", + "location identifier": "G10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_381", + "sample document": { + "sample identifier": "SPL79", + "location identifier": "G10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_393", + "sample document": { + "sample identifier": "SPL79", + "location identifier": "G10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.436, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_405", + "sample document": { + "sample identifier": "SPL79", + "location identifier": "G10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.247, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_417", + "sample document": { + "sample identifier": "SPL79", + "location identifier": "G10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.261, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_370", + "sample document": { + "sample identifier": "SPL87", + "location identifier": "G11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_382", + "sample document": { + "sample identifier": "SPL87", + "location identifier": "G11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.039, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_394", + "sample document": { + "sample identifier": "SPL87", + "location identifier": "G11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.531, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_406", + "sample document": { + "sample identifier": "SPL87", + "location identifier": "G11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.299, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_418", + "sample document": { + "sample identifier": "SPL87", + "location identifier": "G11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.311, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_371", + "sample document": { + "sample identifier": "BLK", + "location identifier": "G12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_383", + "sample document": { + "sample identifier": "BLK", + "location identifier": "G12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.037, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_395", + "sample document": { + "sample identifier": "BLK", + "location identifier": "G12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_407", + "sample document": { + "sample identifier": "BLK", + "location identifier": "G12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_419", + "sample document": { + "sample identifier": "BLK", + "location identifier": "G12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.082, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_420", + "sample document": { + "sample identifier": "SPL8", + "location identifier": "H1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.059, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_432", + "sample document": { + "sample identifier": "SPL8", + "location identifier": "H1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_444", + "sample document": { + "sample identifier": "SPL8", + "location identifier": "H1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.532, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_456", + "sample document": { + "sample identifier": "SPL8", + "location identifier": "H1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.294, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_468", + "sample document": { + "sample identifier": "SPL8", + "location identifier": "H1", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.29, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_421", + "sample document": { + "sample identifier": "SPL16", + "location identifier": "H2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_433", + "sample document": { + "sample identifier": "SPL16", + "location identifier": "H2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_445", + "sample document": { + "sample identifier": "SPL16", + "location identifier": "H2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.612, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_457", + "sample document": { + "sample identifier": "SPL16", + "location identifier": "H2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.338, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_469", + "sample document": { + "sample identifier": "SPL16", + "location identifier": "H2", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.331, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_422", + "sample document": { + "sample identifier": "SPL24", + "location identifier": "H3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_434", + "sample document": { + "sample identifier": "SPL24", + "location identifier": "H3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_446", + "sample document": { + "sample identifier": "SPL24", + "location identifier": "H3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.432, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_458", + "sample document": { + "sample identifier": "SPL24", + "location identifier": "H3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.249, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_470", + "sample document": { + "sample identifier": "SPL24", + "location identifier": "H3", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.274, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_423", + "sample document": { + "sample identifier": "SPL32", + "location identifier": "H4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.055, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_435", + "sample document": { + "sample identifier": "SPL32", + "location identifier": "H4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_447", + "sample document": { + "sample identifier": "SPL32", + "location identifier": "H4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.453, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_459", + "sample document": { + "sample identifier": "SPL32", + "location identifier": "H4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.262, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_471", + "sample document": { + "sample identifier": "SPL32", + "location identifier": "H4", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.282, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_424", + "sample document": { + "sample identifier": "SPL40", + "location identifier": "H5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_436", + "sample document": { + "sample identifier": "SPL40", + "location identifier": "H5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_448", + "sample document": { + "sample identifier": "SPL40", + "location identifier": "H5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.384, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_460", + "sample document": { + "sample identifier": "SPL40", + "location identifier": "H5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.224, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_472", + "sample document": { + "sample identifier": "SPL40", + "location identifier": "H5", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.256, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_425", + "sample document": { + "sample identifier": "SPL48", + "location identifier": "H6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_437", + "sample document": { + "sample identifier": "SPL48", + "location identifier": "H6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_449", + "sample document": { + "sample identifier": "SPL48", + "location identifier": "H6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.378, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_461", + "sample document": { + "sample identifier": "SPL48", + "location identifier": "H6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.224, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_473", + "sample document": { + "sample identifier": "SPL48", + "location identifier": "H6", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.272, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_426", + "sample document": { + "sample identifier": "SPL56", + "location identifier": "H7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.054, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_438", + "sample document": { + "sample identifier": "SPL56", + "location identifier": "H7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_450", + "sample document": { + "sample identifier": "SPL56", + "location identifier": "H7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.455, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_462", + "sample document": { + "sample identifier": "SPL56", + "location identifier": "H7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.266, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_474", + "sample document": { + "sample identifier": "SPL56", + "location identifier": "H7", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.287, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_427", + "sample document": { + "sample identifier": "SPL64", + "location identifier": "H8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.06, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_439", + "sample document": { + "sample identifier": "SPL64", + "location identifier": "H8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_451", + "sample document": { + "sample identifier": "SPL64", + "location identifier": "H8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.064, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_463", + "sample document": { + "sample identifier": "SPL64", + "location identifier": "H8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.05, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_475", + "sample document": { + "sample identifier": "SPL64", + "location identifier": "H8", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.09, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_428", + "sample document": { + "sample identifier": "SPL72", + "location identifier": "H9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.053, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_440", + "sample document": { + "sample identifier": "SPL72", + "location identifier": "H9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_452", + "sample document": { + "sample identifier": "SPL72", + "location identifier": "H9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.393, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_464", + "sample document": { + "sample identifier": "SPL72", + "location identifier": "H9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.228, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_476", + "sample document": { + "sample identifier": "SPL72", + "location identifier": "H9", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.245, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_429", + "sample document": { + "sample identifier": "SPL80", + "location identifier": "H10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.056, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_441", + "sample document": { + "sample identifier": "SPL80", + "location identifier": "H10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.035, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_453", + "sample document": { + "sample identifier": "SPL80", + "location identifier": "H10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.422, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_465", + "sample document": { + "sample identifier": "SPL80", + "location identifier": "H10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.243, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_477", + "sample document": { + "sample identifier": "SPL80", + "location identifier": "H10", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.254, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_430", + "sample document": { + "sample identifier": "SPL88", + "location identifier": "H11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.057, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_442", + "sample document": { + "sample identifier": "SPL88", + "location identifier": "H11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.036, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_454", + "sample document": { + "sample identifier": "SPL88", + "location identifier": "H11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.485, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_466", + "sample document": { + "sample identifier": "SPL88", + "location identifier": "H11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.276, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_478", + "sample document": { + "sample identifier": "SPL88", + "location identifier": "H11", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.277, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { + "measurement document": [ + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 977.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_431", + "sample document": { + "sample identifier": "BLK", + "location identifier": "H12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.089, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 900.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_443", + "sample document": { + "sample identifier": "BLK", + "location identifier": "H12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.038, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 260.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_455", + "sample document": { + "sample identifier": "BLK", + "location identifier": "H12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.058, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 280.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_467", + "sample document": { + "sample identifier": "BLK", + "location identifier": "H12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.046, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + }, + { + "device control aggregate document": { + "device control document": [ + { + "device type": "plate reader", + "detection type": "Absorbance", + "number of averages": { + "value": 8.0, + "unit": "#" + }, + "detector carriage speed setting": "Normal", + "detector wavelength setting": { + "value": 230.0, + "unit": "nm" + } + } + ] + }, + "measurement identifier": "AGILENT_GEN5_TEST_ID_479", + "sample document": { + "sample identifier": "BLK", + "location identifier": "H12", + "well plate identifier": "Plate 1" + }, + "absorbance": { + "value": 0.083, + "unit": "mAU" + }, + "compartment temperature": { + "value": 26.3, + "unit": "degC" + } + } + ], + "measurement time": "2023-09-15T12:30:00+00:00", + "plate well count": { + "value": 96, + "unit": "#" + }, + "analytical method identifier": "C:\\Users\\user\\Desktop\\Plate123.prt", + "experimental data identifier": "\\\\Mac\\Home\\Downloads\\ExperimentFile.xpt", + "container type": "well plate" + } + } + ], + "calculated data aggregate document": { + "calculated data document": [ + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.114, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_480", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_0", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_12", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.568, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_481", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_24", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.299, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_482", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_36", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.986, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_483", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_24", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.623, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_484", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_36", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 249.278, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_485", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_0", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_12", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_24", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_36", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_48", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.901, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_486", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_0", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_12", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_24", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_36", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_48", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_487", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_48", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.18, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_488", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_48", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.287, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_489", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_0", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_12", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_24", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_36", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_48", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.114, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_490", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_1", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_13", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.502, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_491", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_25", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_492", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_37", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.387, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_493", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_25", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.31, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_494", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_37", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 219.364, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_495", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_1", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_13", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_25", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_37", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_49", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.899, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_496", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_1", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_13", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_25", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_37", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_49", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.226, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_497", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_49", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.976, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_498", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_49", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.22, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_499", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_1", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_13", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_25", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_37", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_49", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_500", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_2", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_14", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.423, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_501", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_26", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.226, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_502", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_38", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.117, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_503", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_26", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.201, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_504", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_38", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 205.832, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_505", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_2", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_14", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_26", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_38", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_50", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.87, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_506", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_2", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_14", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_26", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_38", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_50", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.192, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_507", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_50", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.872, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_508", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_50", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.198, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_509", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_2", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_14", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_26", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_38", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_50", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_510", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_3", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_15", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.496, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_511", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_27", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_512", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_39", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.826, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_513", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_27", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.571, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_514", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_39", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 241.297, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_515", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_3", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_15", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_27", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_39", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_51", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.877, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_516", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_3", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_15", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_27", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_39", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_51", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.228, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_517", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_51", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.221, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_518", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_51", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.173, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_519", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_3", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_15", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_27", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_39", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_51", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_520", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_4", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_16", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.358, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_521", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_28", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.191, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_522", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_40", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.394, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_523", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_28", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.811, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_524", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_40", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 169.721, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_525", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_4", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_16", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_28", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_40", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_52", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.874, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_526", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_4", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_16", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_28", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_40", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_52", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.161, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_527", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_52", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.528, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_528", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_52", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.222, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_529", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_4", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_16", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_28", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_40", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_52", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_530", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_5", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_17", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.529, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_531", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_29", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.285, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_532", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_41", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.958, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_533", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_29", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.67, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_534", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_41", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 247.875, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_535", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_5", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_17", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_29", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_41", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_53", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.857, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_536", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_5", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_17", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_29", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_41", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_53", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.242, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_537", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_53", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.265, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_538", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_53", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.189, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_539", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_5", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_17", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_29", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_41", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_53", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_540", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_6", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_18", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.464, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_541", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_30", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_542", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_42", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.564, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_543", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_30", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.436, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_544", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_42", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 228.197, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_545", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_6", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_18", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_30", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_42", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_54", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.873, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_546", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_6", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_18", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_30", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_42", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_54", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.209, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_547", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_54", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.053, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_548", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_54", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.223, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_549", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_6", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_18", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_30", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_42", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_54", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.101, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_550", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_7", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_19", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.429, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_551", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_31", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.231, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_552", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_43", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.243, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_553", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_31", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.284, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_554", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_43", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 212.143, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_555", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_7", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_19", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_31", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_43", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_55", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.858, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_556", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_7", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_19", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_31", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_43", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_55", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.203, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_557", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_55", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_558", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_55", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.115, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_559", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_7", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_19", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_31", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_43", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_55", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_560", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_8", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_20", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.516, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_561", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_32", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.271, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_562", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_44", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.051, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_563", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_32", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.656, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_564", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_44", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 252.538, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_565", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_8", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_20", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_32", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_44", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_56", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.902, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_566", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_8", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_20", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_32", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_44", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_56", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.228, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_567", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_56", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.231, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_568", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_56", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_569", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_8", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_20", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_32", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_44", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_56", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.098, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_570", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_9", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_21", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.438, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_571", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_33", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.233, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_572", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_45", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.484, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_573", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_33", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.387, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_574", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_45", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 224.182, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_575", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_9", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_21", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_33", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_45", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_57", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.878, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_576", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_9", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_21", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_33", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_45", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_57", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.194, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_577", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_57", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.987, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_578", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_57", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.257, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_579", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_9", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_21", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_33", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_45", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_57", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.095, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_580", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_10", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_22", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.547, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_581", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_34", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.31, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_582", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_46", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.756, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_583", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_34", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_584", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_46", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 287.789, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_585", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_10", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_22", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_34", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_46", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_58", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.763, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_586", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_10", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_22", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_34", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_46", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_58", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.284, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_587", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_58", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.986, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_588", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_58", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.928, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_589", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_10", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_22", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_34", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_46", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_58", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_590", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_11", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_23", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.592, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_591", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_35", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.313, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_592", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_47", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.52, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_593", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_35", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.915, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_594", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_47", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 276.016, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_595", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_11", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_23", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_35", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_47", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_59", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.893, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_596", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_11", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_23", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_35", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_47", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_59", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_597", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_59", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.465, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_598", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_59", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.24, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_599", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_11", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_23", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_35", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_47", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_59", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.105, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_600", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_60", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_72", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.57, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_601", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_84", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.302, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_602", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_96", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.426, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_603", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_84", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.881, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_604", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_96", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 271.286, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_605", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_60", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_72", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_84", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_96", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_108", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.883, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_606", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_60", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_72", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_84", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_96", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_108", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_607", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_108", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.512, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_608", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_108", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.16, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_609", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_60", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_72", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_84", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_96", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_108", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_610", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_61", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_73", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.48, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_611", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_85", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.257, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_612", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_97", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.647, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_613", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_85", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.485, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_614", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_97", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 232.355, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_615", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_61", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_73", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_85", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_97", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_109", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.87, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_616", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_61", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_73", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_85", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_97", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_109", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.22, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_617", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_109", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.125, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_618", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_109", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.187, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_619", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_61", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_73", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_85", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_97", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_109", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_620", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_62", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_74", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.463, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_621", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_86", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_622", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_98", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.388, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_623", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_86", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.353, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_624", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_98", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 219.411, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_625", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_62", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_74", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_86", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_98", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_110", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.865, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_626", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_62", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_74", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_86", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_98", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_110", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.219, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_627", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_110", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.072, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_628", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_110", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.117, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_629", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_62", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_74", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_86", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_98", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_110", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.101, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_630", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_63", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_75", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.499, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_631", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_87", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.27, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_632", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_99", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.958, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_633", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_87", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.683, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_634", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_99", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 247.923, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_635", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_63", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_75", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_87", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_99", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_111", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.848, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_636", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_63", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_75", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_87", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_99", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_111", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.254, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_637", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_111", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.528, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_638", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_111", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.961, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_639", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_63", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_75", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_87", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_99", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_111", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.104, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_640", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_64", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_76", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.426, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_641", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_88", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.227, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_642", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_100", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.076, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_643", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_88", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.172, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_644", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_100", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 203.793, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_645", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_64", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_76", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_88", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_100", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_112", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.876, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_646", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_64", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_76", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_88", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_100", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_112", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.188, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_647", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_112", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.802, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_648", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_112", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.261, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_649", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_64", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_76", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_88", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_100", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_112", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.101, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_650", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_65", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_77", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.493, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_651", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_89", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_652", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_101", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.877, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_653", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_89", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.61, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_654", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_101", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 243.841, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_655", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_65", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_77", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_89", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_101", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_113", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.869, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_656", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_65", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_77", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_89", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_101", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_113", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.22, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_657", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_113", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.18, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_658", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_113", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.237, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_659", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_65", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_77", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_89", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_101", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_113", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.101, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_660", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_66", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_78", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.537, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_661", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_90", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.288, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_662", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_102", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.315, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_663", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_90", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.851, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_664", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_102", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 265.747, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_665", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_66", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_78", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_90", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_102", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_114", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.864, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_666", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_66", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_78", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_90", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_102", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_114", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.249, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_667", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_114", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.462, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_668", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_114", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.159, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_669", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_66", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_78", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_90", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_102", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_114", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.104, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_670", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_67", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_79", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.424, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_671", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_91", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.227, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_672", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_103", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.078, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_673", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_91", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.183, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_674", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_103", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 203.92, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_675", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_67", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_79", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_91", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_103", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_115", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.868, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_676", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_67", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_79", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_91", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_103", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_115", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.191, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_677", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_115", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.842, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_678", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_115", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.214, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_679", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_67", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_79", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_91", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_103", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_115", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_680", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_68", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_80", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.519, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_681", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_92", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.279, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_682", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_104", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.08, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_683", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_92", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.726, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_684", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_104", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 254.005, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_685", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_68", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_80", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_92", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_104", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_116", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.863, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_686", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_68", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_80", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_92", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_104", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_116", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.237, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_687", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_116", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.319, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_688", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_116", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.191, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_689", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_68", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_80", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_92", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_104", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_116", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.096, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_690", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_69", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_81", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.614, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_691", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_93", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.328, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_692", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_105", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 6.429, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_693", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_93", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.428, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_694", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_105", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 321.436, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_695", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_69", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_81", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_93", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_105", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_117", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.875, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_696", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_69", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_81", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_93", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_105", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_117", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.282, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_697", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_117", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.95, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_698", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_117", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.18, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_699", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_69", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_81", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_93", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_105", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_117", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_700", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_70", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_82", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.563, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_701", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_94", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.302, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_702", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_106", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.275, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_703", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_94", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.83, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_704", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_106", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 263.766, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_705", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_70", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_82", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_94", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_106", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_118", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.864, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_706", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_70", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_82", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_94", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_106", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_118", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.272, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_707", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_118", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.546, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_708", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_118", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.072, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_709", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_70", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_82", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_94", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_106", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_118", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.082, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_710", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_71", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_83", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.506, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_711", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_95", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.27, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_712", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_107", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 6.195, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_713", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_95", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.305, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_714", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_107", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 309.735, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_715", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_71", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_83", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_95", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_107", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_119", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.874, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_716", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_71", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_83", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_95", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_107", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_119", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.259, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_717", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_119", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 3.167, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_718", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_119", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.956, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_719", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_71", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_83", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_95", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_107", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_119", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.11, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_720", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_120", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_132", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.618, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_721", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_144", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.324, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_722", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_156", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.615, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_723", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_144", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.945, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_724", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_156", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 280.727, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_725", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_120", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_132", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_144", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_156", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_168", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.906, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_726", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_120", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_132", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_144", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_156", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_168", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.276, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_727", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_168", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.51, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_728", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_168", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.236, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_729", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_120", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_132", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_144", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_156", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_168", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.094, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_730", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_121", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_133", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.552, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_731", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_145", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.3, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_732", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_157", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.876, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_733", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_145", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.193, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_734", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_157", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 293.805, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_735", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_121", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_133", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_145", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_157", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_169", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.84, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_736", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_121", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_133", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_145", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_157", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_169", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.302, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_737", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_169", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 3.221, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_738", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_169", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.824, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_739", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_121", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_133", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_145", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_157", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_169", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_740", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_122", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_134", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.689, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_741", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_146", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.364, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_742", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_158", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 6.496, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_743", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_146", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.431, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_744", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_158", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 324.801, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_745", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_122", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_134", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_146", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_158", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_170", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.893, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_746", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_122", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_134", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_146", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_158", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_170", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.321, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_747", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_170", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 3.029, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_748", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_170", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.144, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_749", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_122", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_134", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_146", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_158", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_170", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.104, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_750", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_123", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_135", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.551, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_751", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_147", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.291, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_752", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_159", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.274, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_753", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_147", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.782, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_754", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_159", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 263.681, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_755", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_123", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_135", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_147", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_159", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_171", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.895, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_756", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_123", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_135", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_147", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_159", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_171", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.243, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_757", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_171", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.326, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_758", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_171", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.267, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_759", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_123", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_135", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_147", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_159", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_171", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.098, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_760", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_124", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_136", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.486, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_761", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_148", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.267, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_762", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_160", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.943, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_763", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_148", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.711, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_764", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_160", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 247.169, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_765", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_124", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_136", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_148", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_160", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_172", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.823, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_766", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_124", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_136", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_148", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_160", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_172", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.265, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_767", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_172", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.692, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_768", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_172", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.836, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_769", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_124", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_136", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_148", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_160", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_172", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.132, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_770", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_125", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_137", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_771", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_149", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_772", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_161", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.073, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_773", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_149", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.046, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_774", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_161", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 3.646, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_775", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_125", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_137", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_149", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_161", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_173", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.6, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_776", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_125", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_137", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_149", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_161", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_173", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_777", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_173", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.079, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_778", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_173", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.928, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_779", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_125", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_137", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_149", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_161", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_173", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.119, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_780", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_126", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_138", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.015, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_781", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_150", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.009, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_782", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_162", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.126, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_783", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_150", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.079, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_784", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_162", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 6.308, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_785", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_126", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_138", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_150", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_162", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_174", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.596, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_786", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_126", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_138", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_150", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_162", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_174", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.017, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_787", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_174", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.143, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_788", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_174", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.88, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_789", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_126", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_138", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_150", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_162", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_174", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.122, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_790", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_127", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_139", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.014, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_791", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_151", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.009, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_792", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_163", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.115, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_793", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_151", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.072, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_794", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_163", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 5.727, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_795", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_127", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_139", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_151", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_163", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_175", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.591, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_796", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_127", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_139", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_151", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_163", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_175", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.013, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_797", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_175", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_798", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_175", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.049, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_799", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_127", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_139", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_151", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_163", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_175", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.132, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_800", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_128", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_140", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.014, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_801", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_152", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.009, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_802", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_164", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_803", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_152", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.068, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_804", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_164", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 5.316, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_805", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_128", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_140", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_152", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_164", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_176", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.556, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_806", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_128", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_140", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_152", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_164", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_176", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.011, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_807", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_176", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.083, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_808", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_176", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.279, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_809", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_128", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_140", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_152", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_164", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_176", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.137, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_810", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_129", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_141", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.013, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_811", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_153", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.008, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_812", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_165", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.097, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_813", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_153", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.059, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_814", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_165", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 4.846, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_815", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_129", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_141", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_153", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_165", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_177", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.642, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_816", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_129", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_141", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_153", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_165", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_177", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.011, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_817", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_177", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.081, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_818", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_177", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.193, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_819", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_129", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_141", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_153", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_165", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_177", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.141, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_820", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_130", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_142", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.012, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_821", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_154", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.007, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_822", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_166", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.086, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_823", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_154", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.053, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_824", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_166", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 4.304, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_825", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_130", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_142", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_154", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_166", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_178", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.635, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_826", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_130", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_142", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_154", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_166", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_178", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_827", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_178", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.069, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_828", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_178", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.241, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_829", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_130", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_142", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_154", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_166", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_178", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.147, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_830", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_131", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_143", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_831", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_155", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.004, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_832", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_167", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.039, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_833", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_155", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.025, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_834", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_167", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 1.936, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_835", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_131", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_143", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_155", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_167", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_179", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.541, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_836", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_131", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_143", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_155", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_167", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_179", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_837", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_179", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.041, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_838", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_179", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.942, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_839", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_131", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_143", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_155", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_167", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_179", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.153, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_840", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_180", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_192", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.007, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_841", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_204", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.005, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_842", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_216", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.049, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_843", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_204", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.03, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_844", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_216", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 2.455, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_845", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_180", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_192", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_204", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_216", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_228", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.63, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_846", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_180", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_192", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_204", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_216", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_228", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_847", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_228", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.063, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_848", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_228", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.777, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_849", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_180", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_192", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_204", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_216", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_228", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.111, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_850", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_181", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_193", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.582, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_851", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_205", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.309, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_852", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_217", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.239, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_853", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_205", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.785, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_854", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_217", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 261.945, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_855", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_181", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_193", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_205", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_217", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_229", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.881, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_856", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_181", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_193", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_205", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_217", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_229", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.275, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_857", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_229", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.471, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_858", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_229", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.12, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_859", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_181", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_193", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_205", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_217", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_229", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.111, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_860", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_182", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_194", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.596, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_861", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_206", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.314, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_862", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_218", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.388, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_863", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_206", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.843, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_864", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_218", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 269.412, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_865", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_182", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_194", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_206", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_218", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_230", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.895, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_866", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_182", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_194", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_206", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_218", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_230", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.266, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_867", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_230", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.403, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_868", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_230", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.242, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_869", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_182", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_194", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_206", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_218", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_230", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.113, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_870", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_183", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_195", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.41, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_871", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_207", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.231, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_872", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_219", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.636, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_873", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_207", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.047, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_874", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_219", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 181.818, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_875", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_183", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_195", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_207", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_219", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_231", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.777, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_876", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_183", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_195", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_207", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_219", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_231", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.263, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_877", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_231", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.335, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_878", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_231", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.557, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_879", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_183", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_195", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_207", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_219", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_231", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_880", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_184", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_196", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.392, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_881", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_208", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.211, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_882", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_220", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.6, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_883", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_208", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.937, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_884", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_220", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 180.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_885", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_184", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_196", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_208", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_220", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_232", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.859, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_886", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_184", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_196", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_208", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_220", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_232", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.18, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_887", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_232", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.657, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_888", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_232", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.172, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_889", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_184", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_196", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_208", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_220", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_232", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_890", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_185", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_197", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.572, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_891", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_209", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.304, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_892", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_221", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.25, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_893", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_209", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.794, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_894", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_221", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 262.515, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_895", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_185", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_197", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_209", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_221", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_233", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.879, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_896", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_185", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_197", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_209", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_221", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_233", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.262, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_897", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_233", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.404, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_898", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_233", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.184, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_899", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_185", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_197", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_209", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_221", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_233", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.098, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_900", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_186", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_198", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.49, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_901", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_210", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.265, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_902", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_222", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_903", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_210", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.71, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_904", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_222", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 250.517, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_905", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_186", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_198", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_210", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_222", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_234", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.849, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_906", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_186", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_198", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_210", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_222", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_234", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.249, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_907", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_234", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.548, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_908", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_234", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.966, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_909", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_186", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_198", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_210", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_222", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_234", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_910", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_187", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_199", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.501, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_911", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_211", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.27, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_912", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_223", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.676, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_913", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_211", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.523, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_914", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_223", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 233.813, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_915", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_187", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_199", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_211", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_223", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_235", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.854, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_916", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_187", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_199", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_211", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_223", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_235", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.217, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_917", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_235", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.023, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_918", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_235", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.311, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_919", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_187", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_199", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_211", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_223", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_235", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.101, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_920", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_188", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_200", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.524, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_921", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_212", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.274, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_922", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_224", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.179, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_923", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_212", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.714, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_924", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_224", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 258.973, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_925", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_188", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_200", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_212", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_224", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_236", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.909, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_926", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_188", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_200", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_212", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_224", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_236", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.24, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_927", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_236", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.37, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_928", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_236", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.185, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_929", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_188", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_200", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_212", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_224", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_236", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_930", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_189", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_201", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.53, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_931", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_213", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.284, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_932", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_225", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.919, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_933", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_213", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.632, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_934", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_225", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 245.969, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_935", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_189", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_201", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_213", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_225", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_237", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.869, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_936", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_189", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_201", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_213", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_225", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_237", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.246, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_937", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_237", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.279, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_938", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_237", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.158, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_939", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_189", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_201", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_213", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_225", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_237", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_940", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_190", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_202", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.599, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_941", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_214", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.318, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_942", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_226", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.672, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_943", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_214", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 3.015, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_944", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_226", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 283.595, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_945", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_190", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_202", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_214", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_226", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_238", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.881, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_946", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_190", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_202", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_214", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_226", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_238", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.279, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_947", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_238", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.64, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_948", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_238", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.149, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_949", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_190", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_202", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_214", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_226", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_238", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_950", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_191", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_203", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.538, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_951", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_215", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.293, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_952", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_227", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.044, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_953", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_215", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.744, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_954", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_227", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 252.187, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_955", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_191", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_203", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_215", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_227", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_239", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.838, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_956", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_191", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_203", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_215", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_227", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_239", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.273, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_957", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_239", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.56, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_958", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_239", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.97, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_959", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_191", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_203", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_215", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_227", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_239", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_960", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_240", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_252", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.58, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_961", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_264", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.307, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_962", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_276", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.355, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_963", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_264", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.831, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_964", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_276", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 267.738, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_965", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_240", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_252", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_264", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_276", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_288", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.891, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_966", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_240", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_252", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_264", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_276", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_288", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.266, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_967", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_288", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.454, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_968", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_288", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.182, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_969", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_240", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_252", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_264", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_276", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_288", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.097, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_970", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_241", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_253", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.483, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_971", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_265", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_972", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_277", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.999, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_973", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_265", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.735, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_974", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_277", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 249.931, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_975", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_241", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_253", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_265", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_277", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_289", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.828, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_976", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_241", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_253", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_265", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_277", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_289", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.256, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_977", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_289", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.649, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_978", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_289", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.887, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_979", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_241", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_253", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_265", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_277", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_289", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.107, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_980", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_242", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_254", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.527, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_981", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_266", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.277, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_982", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_278", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.911, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_983", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_266", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.587, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_984", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_278", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 245.565, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_985", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_242", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_254", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_266", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_278", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_290", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.898, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_986", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_242", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_254", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_266", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_278", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_290", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.237, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_987", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_290", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.212, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_988", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_290", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.221, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_989", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_242", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_254", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_266", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_278", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_290", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_990", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_243", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_255", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.408, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_991", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_267", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.219, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_992", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_279", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.784, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_993", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_267", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.032, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_994", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_279", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 189.186, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_995", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_243", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_255", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_267", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_279", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_291", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.862, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_996", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_243", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_255", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_267", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_279", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_291", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.19, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_997", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_291", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.763, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_998", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_291", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.146, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_999", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_243", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_255", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_267", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_279", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_291", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1000", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_244", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_256", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.495, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1001", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_268", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.263, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1002", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_280", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.568, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1003", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_268", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.43, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1004", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_280", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 228.415, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1005", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_244", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_256", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_268", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_280", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_292", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.88, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1006", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_244", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_256", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_268", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_280", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_292", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.222, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1007", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_292", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.048, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1008", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_292", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.231, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1009", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_244", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_256", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_268", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_280", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_292", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1010", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_245", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_257", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.431, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1011", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_269", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.232, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1012", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_281", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.196, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1013", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_269", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.256, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1014", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_281", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 209.822, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1015", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_245", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_257", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_269", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_281", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_293", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.86, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1016", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_245", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_257", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_269", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_281", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_293", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.195, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1017", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_293", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.896, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1018", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_293", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.213, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1019", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_245", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_257", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_269", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_281", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_293", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1020", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_246", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_258", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.547, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1021", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_270", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.292, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1022", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_282", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.29, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1023", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_270", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.827, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1024", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_282", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 264.484, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1025", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_246", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_258", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_270", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_282", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_294", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.871, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1026", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_246", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_258", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_270", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_282", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_294", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.252, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1027", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_294", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.439, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1028", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_294", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.169, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1029", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_246", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_258", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_270", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_282", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_294", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.095, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1030", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_247", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_259", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.372, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1031", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_271", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.2, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1032", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_283", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.915, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1033", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_271", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1034", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_283", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 195.737, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1035", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_247", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_259", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_271", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_283", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_295", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.857, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1036", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_247", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_259", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_271", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_283", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_295", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.174, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1037", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_295", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.834, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1038", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_295", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.134, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1039", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_247", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_259", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_271", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_283", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_295", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.096, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1040", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_248", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_260", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.543, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1041", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_272", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.287, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1042", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_284", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.679, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1043", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_272", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.999, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1044", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_284", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 283.971, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1045", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_248", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_260", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_272", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_284", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_296", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.894, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1046", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_248", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_260", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_272", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_284", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_296", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.247, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1047", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_296", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.586, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1048", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_296", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.196, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1049", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_248", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_260", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_272", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_284", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_296", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1050", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_249", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_261", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.533, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1051", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_273", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.284, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1052", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_285", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.187, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1053", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_273", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.759, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1054", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_285", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 259.346, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1055", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_249", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_261", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_273", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_285", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_297", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.88, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1056", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_249", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_261", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_273", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_285", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_297", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1057", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_297", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.412, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1058", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_297", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.151, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1059", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_249", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_261", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_273", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_285", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_297", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1060", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_250", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_262", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.399, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1061", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_274", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.21, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1062", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_286", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.781, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1063", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_274", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.986, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1064", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_286", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 189.047, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1065", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_250", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_262", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_274", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_286", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_298", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.904, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1066", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_250", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_262", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_274", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_286", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_298", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.189, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1067", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_298", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.792, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1068", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_298", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.11, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1069", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_250", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_262", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_274", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_286", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_298", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.115, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1070", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_251", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_263", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.439, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1071", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_275", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.235, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1072", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_287", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.815, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1073", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_275", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.043, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1074", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_287", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 190.739, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1075", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_251", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_263", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_275", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_287", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_299", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.867, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1076", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_251", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_263", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_275", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_287", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_299", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.197, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1077", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_299", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.716, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1078", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_299", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.223, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1079", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_251", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_263", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_275", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_287", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_299", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.158, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1080", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_300", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_312", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.005, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1081", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_324", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.003, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1082", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_336", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.03, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1083", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_324", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.017, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1084", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_336", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 1.489, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1085", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_300", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_312", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_324", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_336", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_348", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.741, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1086", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_300", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_312", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_324", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_336", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_348", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.008, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1087", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_348", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.048, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1088", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_348", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.623, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1089", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_300", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_312", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_324", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_336", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_348", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.112, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1090", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_301", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_313", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.451, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1091", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_325", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.237, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1092", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_337", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.019, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1093", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_325", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.108, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1094", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_337", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 200.941, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1095", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_301", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_313", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_325", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_337", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_349", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.906, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1096", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_301", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_313", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_325", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_337", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_349", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.202, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1097", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_349", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.798, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1098", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_349", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.235, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1099", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_301", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_313", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_325", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_337", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_349", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.115, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1100", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_302", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_314", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.396, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1101", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_326", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.214, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1102", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_338", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.443, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1103", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_326", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.857, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1104", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_338", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 172.13, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1105", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_302", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_314", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_326", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_338", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_350", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.853, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1106", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_302", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_314", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_326", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_338", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_350", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.185, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1107", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_350", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.611, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1108", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_350", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.137, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1109", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_302", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_314", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_326", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_338", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_350", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.114, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1110", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_303", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_315", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.394, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1111", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_327", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.205, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1112", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_339", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.445, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1113", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_327", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.793, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1114", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_339", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 172.267, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1115", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_303", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_315", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_327", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_339", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_351", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.922, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1116", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_303", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_315", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_327", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_339", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_351", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.172, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1117", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_351", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.507, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1118", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_351", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.286, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1119", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_303", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_315", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_327", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_339", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_351", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1120", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_304", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_316", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.569, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1121", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_328", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.303, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1122", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_340", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 5.36, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1123", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_328", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.855, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1124", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_340", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 268.021, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1125", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_304", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_316", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_328", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_340", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_352", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.877, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1126", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_304", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_316", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_328", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_340", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_352", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.264, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1127", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_352", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.487, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1128", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_352", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.156, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1129", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_304", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_316", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_328", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_340", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_352", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.121, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1130", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_305", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_317", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.347, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1131", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_329", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.184, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1132", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_341", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 2.877, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1133", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_329", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.528, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1134", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_341", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 143.834, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1135", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_305", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_317", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_329", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_341", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_353", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.883, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1136", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_305", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_317", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_329", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_341", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_353", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.155, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1137", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_353", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.289, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1138", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_353", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.232, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1139", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_305", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_317", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_329", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_341", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_353", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.095, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1140", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_306", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_318", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.247, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1141", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_330", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.13, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1142", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_342", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 2.597, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1143", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_330", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.368, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1144", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_342", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 129.842, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1145", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_306", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_318", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_330", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_342", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_354", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.898, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1146", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_306", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_318", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_330", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_342", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_354", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.124, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1147", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_354", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.308, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1148", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_354", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.986, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1149", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_306", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_318", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_330", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_342", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_354", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.105, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1150", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_307", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_319", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.337, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1151", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_331", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.181, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1152", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_343", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.21, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1153", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_331", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.72, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1154", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_343", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 160.476, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1155", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_307", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_319", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_331", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_343", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_355", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.866, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1156", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_307", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_319", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_331", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_343", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_355", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.15, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1157", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_355", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.433, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1158", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_355", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.24, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1159", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_307", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_319", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_331", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_343", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_355", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1160", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_308", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_320", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.404, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1161", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_332", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.218, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1162", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_344", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.95, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1163", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_332", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.137, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1164", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_344", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 197.511, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1165", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_308", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_320", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_332", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_344", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_356", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.848, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1166", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_308", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_320", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_332", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_344", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_356", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.191, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1167", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_356", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.87, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1168", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_356", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.112, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1169", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_308", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_320", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_332", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_344", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_356", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1170", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_309", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_321", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.39, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1171", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_333", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.214, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1172", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_345", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.813, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1173", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_333", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.09, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1174", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_345", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 190.663, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1175", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_309", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_321", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_333", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_345", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_357", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.825, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1176", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_309", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_321", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_333", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_345", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_357", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.194, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1177", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_357", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.898, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1178", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_357", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.009, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1179", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_309", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_321", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_333", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_345", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_357", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.114, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1180", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_310", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_322", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.432, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1181", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_334", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.232, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1182", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_346", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.793, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1183", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_334", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.033, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1184", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_346", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 189.659, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1185", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_310", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_322", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_334", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_346", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_358", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.866, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1186", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_310", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_322", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_334", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_346", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_358", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.207, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1187", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_358", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.814, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1188", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_358", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.09, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1189", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_310", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_322", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_334", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_346", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_358", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.122, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1190", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_311", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_323", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.47, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1191", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_335", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.25, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1192", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_347", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.846, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1193", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_335", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.048, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1194", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_347", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 192.314, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1195", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_311", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_323", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_335", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_347", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_359", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.878, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1196", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_311", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_323", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_335", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_347", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_359", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.21, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1197", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_359", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.719, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1198", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_359", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.237, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1199", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_311", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_323", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_335", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_347", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_359", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.156, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1200", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_360", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_372", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1201", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_384", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.003, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1202", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_396", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.036, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1203", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_384", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.021, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1204", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_396", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 1.8, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1205", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_360", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_372", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_384", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_396", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_408", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.697, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1206", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_360", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_372", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_384", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_396", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_408", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1207", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_408", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.064, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1208", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_408", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.563, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1209", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_360", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_372", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_384", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_396", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_408", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.116, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1210", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_361", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_373", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.444, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1211", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_385", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.235, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1212", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_397", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.821, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1213", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_385", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.022, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1214", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_397", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 191.067, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1215", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_361", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_373", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_385", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_397", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_409", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.89, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1216", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_361", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_373", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_385", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_397", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_409", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.204, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1217", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_409", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.754, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1218", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_409", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.179, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1219", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_361", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_373", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_385", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_397", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_409", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.139, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1220", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_362", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_374", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1221", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_386", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.005, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1222", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_398", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.068, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1223", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_386", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.038, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1224", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_398", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 3.406, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1225", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_362", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_374", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_386", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_398", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_410", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.792, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1226", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_362", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_374", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_386", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_398", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_410", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.01, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1227", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_410", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.074, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1228", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_410", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.927, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1229", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_362", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_374", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_386", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_398", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_410", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.139, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1230", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_363", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_375", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.013, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1231", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_387", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.008, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1232", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_399", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.092, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1233", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_387", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.055, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1234", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_399", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 4.608, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1235", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_363", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_375", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_387", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_399", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_411", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.662, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1236", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_363", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_375", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_387", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_399", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_411", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.014, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1237", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_411", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1238", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_411", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.905, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1239", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_363", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_375", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_387", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_399", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_411", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.111, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1240", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_364", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_376", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.311, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1241", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_388", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.169, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1242", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_400", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 2.816, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1243", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_388", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.531, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1244", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_400", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 140.789, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1245", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_364", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_376", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_388", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_400", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_412", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.839, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1246", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_364", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_376", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_388", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_400", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_412", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.157, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1247", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_412", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.424, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1248", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_412", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.977, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1249", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_364", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_376", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_388", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_400", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_412", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.126, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1250", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_365", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_377", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.014, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1251", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_389", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.009, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1252", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_401", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.112, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1253", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_389", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.071, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1254", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_401", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 5.59, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1255", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_365", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_377", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_389", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_401", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_413", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.567, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1256", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_365", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_377", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_389", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_401", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_413", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.024, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1257", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_413", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.19, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1258", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_413", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.589, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1259", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_365", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_377", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_389", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_401", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_413", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1260", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_366", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_378", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.366, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1261", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_390", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.2, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1262", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_402", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.603, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1263", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_390", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.97, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1264", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_402", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 180.148, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1265", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_366", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_378", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_390", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_402", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_414", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.829, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1266", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_366", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_378", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_390", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_402", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_414", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.197, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1267", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_414", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.934, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1268", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_414", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.863, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1269", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_366", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_378", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_390", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_402", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_414", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.103, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1270", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_367", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_379", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.333, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1271", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_391", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.181, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1272", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_403", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.239, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1273", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_391", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.763, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1274", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_403", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 161.951, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1275", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_367", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_379", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_391", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_403", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_415", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.837, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1276", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_367", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_379", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_391", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_403", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_415", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.173, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1277", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_415", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.687, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1278", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_415", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.92, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1279", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_367", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_379", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_391", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_403", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_415", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.097, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1280", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_368", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_380", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.403, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1281", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_392", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.216, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1282", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_404", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.144, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1283", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_392", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.22, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1284", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_404", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 207.206, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1285", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_368", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_380", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_392", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_404", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_416", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.867, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1286", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_368", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_380", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_392", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_404", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_416", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.194, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1287", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_416", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.996, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1288", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_416", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.076, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1289", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_368", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_380", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_392", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_404", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_416", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1290", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_369", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_381", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.378, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1291", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_393", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.201, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1292", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_405", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.455, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1293", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_393", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.84, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1294", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_405", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 172.736, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1295", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_369", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_381", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_393", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_405", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_417", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.877, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1296", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_369", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_381", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_393", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_405", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_417", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.178, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1297", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_417", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.627, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1298", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_417", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.124, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1299", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_369", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_381", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_393", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_405", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_417", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1300", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_370", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_382", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.473, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1301", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_394", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.252, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1302", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_406", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.343, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1303", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_394", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.319, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1304", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_406", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 217.148, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1305", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_370", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_382", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_394", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_406", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_418", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.873, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1306", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_370", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_382", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_394", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_406", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_418", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.229, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1307", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_418", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.099, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1308", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_418", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.069, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1309", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_370", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_382", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_394", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_406", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_418", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.284, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1310", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_371", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_383", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1311", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_395", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1312", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_407", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1313", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_395", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1314", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_407", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1315", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_371", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_383", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_395", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_407", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_419", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1316", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_371", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_383", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_395", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_407", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_419", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1317", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_419", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": -0.002, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1318", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_419", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": -0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1319", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_371", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_383", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_395", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_407", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_419", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.129, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1320", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_420", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_432", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.474, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1321", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_444", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1322", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_456", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.665, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1323", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_444", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.919, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1324", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_456", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 183.245, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1325", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_420", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_432", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_444", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_456", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_468", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.91, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1326", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_420", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_432", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_444", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_456", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_468", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.207, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1327", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_468", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.599, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1328", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_468", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.292, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1329", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_420", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_432", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_444", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_456", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_468", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.118, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1330", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_421", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_433", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.554, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1331", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_445", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.292, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1332", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_457", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.707, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1333", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_445", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.478, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1334", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_457", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 235.358, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1335", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_421", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_433", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_445", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_457", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_469", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.899, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1336", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_421", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_433", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_445", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_457", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_469", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.248, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1337", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_469", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.105, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1338", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_469", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.236, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1339", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_421", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_433", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_445", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_457", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_469", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.105, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1340", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_422", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_434", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.374, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1341", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_446", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.203, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1342", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_458", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.561, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1343", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_446", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.93, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1344", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_458", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 178.048, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1345", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_422", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_434", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_446", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_458", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_470", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.846, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1346", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_422", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_434", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_446", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_458", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_470", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.191, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1347", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_470", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.819, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1348", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_470", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.958, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1349", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_422", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_434", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_446", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_458", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_470", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1350", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_423", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_435", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.395, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1351", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_447", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.216, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1352", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_459", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.606, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1353", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_447", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.971, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1354", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_459", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 180.32, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1355", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_423", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_435", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_447", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_459", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_471", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.83, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1356", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_423", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_435", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_447", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_459", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_471", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.199, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1357", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_471", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.817, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1358", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_471", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.985, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1359", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_423", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_435", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_447", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_459", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_471", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.109, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1360", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_424", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_436", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.326, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1361", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_448", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.178, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1362", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_460", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 2.996, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1363", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_448", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.636, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1364", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_460", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 149.786, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1365", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_424", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_436", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_448", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_460", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_472", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.832, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1366", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_424", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_436", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_448", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_460", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_472", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.173, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1367", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_472", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.593, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1368", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_472", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.881, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1369", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_424", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_436", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_448", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_460", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_472", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.102, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1370", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_425", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_437", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.32, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1371", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_449", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.178, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1372", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_461", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.151, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1373", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_449", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.752, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1374", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_461", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 157.574, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1375", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_425", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_437", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_449", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_461", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_473", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.799, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1376", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_425", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_437", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_449", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_461", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_473", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.189, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1377", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_473", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.862, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1378", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_473", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.692, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1379", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_425", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_437", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_449", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_461", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_473", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.097, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1380", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_426", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_438", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.397, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1381", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_450", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.22, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1382", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_462", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 4.106, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1383", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_450", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 2.277, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1384", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_462", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 205.293, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1385", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_426", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_438", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_450", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_462", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_474", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.803, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1386", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_426", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_438", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_450", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_462", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_474", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.204, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1387", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_474", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 2.111, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1388", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_474", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 1.945, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1389", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_426", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_438", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_450", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_462", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_474", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.134, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1390", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_427", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_439", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.006, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1391", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_451", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.004, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1392", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_463", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.046, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1393", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_451", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.029, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1394", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_463", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 2.278, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1395", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_427", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_439", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_451", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_463", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_475", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.564, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1396", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_427", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_439", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_451", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_463", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_475", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.007, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1397", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_475", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.053, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1398", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_475", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.865, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1399", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_427", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_439", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_451", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_463", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_475", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.104, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1400", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_428", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_440", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.335, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1401", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_452", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.182, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1402", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_464", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.206, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1403", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_452", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.745, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1404", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_464", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 160.277, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1405", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_428", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_440", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_452", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_464", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_476", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.837, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1406", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_428", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_440", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_452", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_464", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_476", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.162, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1407", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_476", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.554, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1408", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_476", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.062, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1409", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_428", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_440", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_452", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_464", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_476", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.111, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1410", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_429", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_441", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.364, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1411", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_453", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.197, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1412", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_465", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.273, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1413", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_453", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.777, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1414", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_465", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 163.665, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1415", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_429", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_441", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_453", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_465", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_477", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.842, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1416", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_429", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_441", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_453", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_465", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_477", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.171, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1417", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_477", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.539, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1418", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_477", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.126, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1419", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_429", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_441", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_453", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_465", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_477", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.117, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1420", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_430", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_442", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.427, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1421", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_454", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.23, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1422", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_466", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 3.664, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1423", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_454", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 1.969, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1424", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_466", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 183.214, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1425", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_430", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_442", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_454", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_466", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_478", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 1.861, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1426", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_430", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_442", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_454", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_466", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_478", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.194, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1427", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_478", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 1.664, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1428", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_478", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 2.202, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1429", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_430", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_442", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_454", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_466", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_478", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "260:Pathlength", + "calculated result": { + "value": 0.283, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1430", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_431", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_443", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:260", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1431", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_455", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:280", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1432", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_467", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:260]", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1433", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_455", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:280]", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1434", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_467", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "DNA concentration ng/uL", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1435", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_431", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_443", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_455", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_467", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_479", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/280", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1436", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_431", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_443", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_455", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_467", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_479", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Blank 260:230", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1437", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_479", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Corrected [Blank 260:230]", + "calculated result": { + "value": 0.002, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1438", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_479", + "data source feature": "absorbance" + } + ] + } + }, + { + "calculated data name": "Ratio 260/230", + "calculated result": { + "value": 0.0, + "unit": "(unitless)" + }, + "calculated data identifier": "AGILENT_GEN5_TEST_ID_1439", + "data source aggregate document": { + "data source document": [ + { + "data source identifier": "AGILENT_GEN5_TEST_ID_431", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_443", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_455", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_467", + "data source feature": "absorbance" + }, + { + "data source identifier": "AGILENT_GEN5_TEST_ID_479", + "data source feature": "absorbance" + } + ] + } + } + ] + }, + "data system document": { + "ASM file identifier": "endpoint_pathlength_correct_singleplate_no_pm_in_time.json", + "data system instance identifier": "N/A", + "file name": "endpoint_pathlength_correct_singleplate_no_pm_in_time.txt", + "UNC path": "N/A", + "ASM converter name": "allotropy_agilent_gen5", + "ASM converter version": "0.1.56", + "software name": "Gen5", + "software version": "3.12.08" + }, + "device system document": { + "device identifier": "N/A", + "model number": "Generic Reader", + "equipment serial number": "12345678" + } + } +} \ No newline at end of file diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate.json b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate.json index 565fb4a48..ed130d9f4 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate.json @@ -7208,7 +7208,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_stdcurve_singleplate.json", "data system instance identifier": "N/A", "file name": "endpoint_stdcurve_singleplate.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate_2.json b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate_2.json index e9e531f8b..6bacf1ac0 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate_2.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/endpoint_stdcurve_singleplate_2.json @@ -7208,7 +7208,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_stdcurve_singleplate_2.json", "data system instance identifier": "N/A", "file name": "endpoint_stdcurve_singleplate_2.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/absorbance/kinetic_helper_gene_growth_curve.json b/tests/parsers/agilent_gen5/testdata/absorbance/kinetic_helper_gene_growth_curve.json index 8da3f41c8..bdef2428c 100644 --- a/tests/parsers/agilent_gen5/testdata/absorbance/kinetic_helper_gene_growth_curve.json +++ b/tests/parsers/agilent_gen5/testdata/absorbance/kinetic_helper_gene_growth_curve.json @@ -36680,12 +36680,12 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "kinetic_helper_gene_growth_curve.json", "data system instance identifier": "N/A", "file name": "kinetic_helper_gene_growth_curve.txt", "UNC path": "N/A", "ASM converter name": "allotropy_agilent_gen5", - "ASM converter version": "0.1.53", + "ASM converter version": "0.1.56", "software name": "Gen5", "software version": "3.0.1" }, diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_endpoint_singleplate.json b/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_endpoint_singleplate.json index 5716a7490..2f8ec9261 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_endpoint_singleplate.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_endpoint_singleplate.json @@ -7160,7 +7160,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "alphalisa_endpoint_singleplate.json", "data system instance identifier": "N/A", "file name": "alphalisa_endpoint_singleplate.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_test_2.json b/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_test_2.json index dd72947ee..169fb6c63 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_test_2.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/alphalisa_test_2.json @@ -2824,7 +2824,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "alphalisa_test_2.json", "data system instance identifier": "N/A", "file name": "alphalisa_test_2.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_single_plate_example.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_single_plate_example.json index 840d23b7e..afa514419 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_single_plate_example.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_single_plate_example.json @@ -550,7 +550,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_single_plate_example.json", "data system instance identifier": "N/A", "file name": "endpoint_single_plate_example.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate.json index 38963533a..507c93e9b 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate.json @@ -18824,7 +18824,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter.json index 4adaf677e..64e8ccbb5 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter.json @@ -36112,7 +36112,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_filter.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_filter.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel.json index 519fe5d23..e5e9b3a13 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel.json @@ -11140,7 +11140,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_filter_withStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_filter_withStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel_withCalculatedValues.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel_withCalculatedValues.json index fe39938c2..bd502ecd1 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel_withCalculatedValues.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withStepLabel_withCalculatedValues.json @@ -19968,7 +19968,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_filter_withStepLabel_withCalculatedValues.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_filter_withStepLabel_withCalculatedValues.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel.json index 20a59f60d..c114a1eed 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel.json @@ -11140,7 +11140,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_filter_withoutStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_filter_withoutStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.json index 039fe490a..c8f3369f2 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.json @@ -18048,7 +18048,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_filter_withoutStepLabel_withCalculatedValues.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_monochromator_withoutStepLabel.json b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_monochromator_withoutStepLabel.json index 83aa3354a..be8371435 100644 --- a/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_monochromator_withoutStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/fluorescence/endpoint_singleplate_monochromator_withoutStepLabel.json @@ -8836,7 +8836,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_monochromator_withoutStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_monochromator_withoutStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate.json b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate.json index 1805f11d9..3e3b6033e 100644 --- a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate.json +++ b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate.json @@ -5480,7 +5480,7 @@ ] }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withStepLabel.json b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withStepLabel.json index 6934f015f..4189ad2c2 100644 --- a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withStepLabel.json @@ -4612,7 +4612,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_withFilter_withStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_withFilter_withStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withoutStepLabel.json b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withoutStepLabel.json index 604a54dd6..a05b7cf3e 100644 --- a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withoutStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withFilter_withoutStepLabel.json @@ -4612,7 +4612,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_withFilter_withoutStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_withFilter_withoutStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withoutStepLabel.json b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withoutStepLabel.json index b4ecc7c72..f44870dc0 100644 --- a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withoutStepLabel.json +++ b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_withoutStepLabel.json @@ -3940,7 +3940,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_withoutStepLabel.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_withoutStepLabel.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_without_bandwidth.json b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_without_bandwidth.json index d285fce7e..cf1f4a954 100644 --- a/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_without_bandwidth.json +++ b/tests/parsers/agilent_gen5/testdata/luminescence/endpoint_singleplate_without_bandwidth.json @@ -544,7 +544,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "endpoint_singleplate_without_bandwidth.json", "data system instance identifier": "N/A", "file name": "endpoint_singleplate_without_bandwidth.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/multi_read_modes/multiple_read_modes.json b/tests/parsers/agilent_gen5/testdata/multi_read_modes/multiple_read_modes.json index d71a75b49..ed906fca2 100644 --- a/tests/parsers/agilent_gen5/testdata/multi_read_modes/multiple_read_modes.json +++ b/tests/parsers/agilent_gen5/testdata/multi_read_modes/multiple_read_modes.json @@ -12772,7 +12772,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "multiple_read_modes.json", "data system instance identifier": "N/A", "file name": "multiple_read_modes.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/testdata/multi_read_modes/two_same_read_modes.json b/tests/parsers/agilent_gen5/testdata/multi_read_modes/two_same_read_modes.json index 4de792629..216400f3b 100644 --- a/tests/parsers/agilent_gen5/testdata/multi_read_modes/two_same_read_modes.json +++ b/tests/parsers/agilent_gen5/testdata/multi_read_modes/two_same_read_modes.json @@ -7684,7 +7684,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "two_same_read_modes.json", "data system instance identifier": "N/A", "file name": "two_same_read_modes.txt", "UNC path": "N/A", diff --git a/tests/parsers/agilent_gen5/to_allotrope_test.py b/tests/parsers/agilent_gen5/to_allotrope_test.py index e5a0ac580..48b675459 100644 --- a/tests/parsers/agilent_gen5/to_allotrope_test.py +++ b/tests/parsers/agilent_gen5/to_allotrope_test.py @@ -27,13 +27,13 @@ class TestParser(ParserTest): def test_to_allotrope_absorbance_no_pm_in_time() -> None: test_filepath = f"{ABSORBANCE_PATH}/exclude/endpoint_pathlength_correct_singleplate_no_pm_in_time.txt" expected_filepath = ( - f"{ABSORBANCE_PATH}/endpoint_pathlength_correct_singleplate.json" + f"{ABSORBANCE_PATH}/endpoint_pathlength_correct_singleplate_no_pm_in_time.json" ) allotrope_dict = from_file(test_filepath, VENDOR_TYPE) allotrope_dict["plate reader aggregate document"]["data system document"][ "file name" - ] = "endpoint_pathlength_correct_singleplate.txt" + ] = "endpoint_pathlength_correct_singleplate_no_pm_in_time.txt" validate_contents(allotrope_dict, expected_filepath) diff --git a/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json b/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json index ee922de6f..fb73be496 100644 --- a/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json +++ b/tests/parsers/bmg_mars/testdata/16-02-29 14-34-46 Transcreener ADP2 FI.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -28,6 +22,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_0", "sample document": { "sample identifier": "black 384w small volume A1", "location identifier": "A1", @@ -39,6 +34,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -47,14 +47,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -71,6 +65,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_1", "sample document": { "sample identifier": "black 384w small volume A2", "location identifier": "A2", @@ -82,6 +77,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -90,14 +90,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -114,6 +108,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_2", "sample document": { "sample identifier": "black 384w small volume A3", "location identifier": "A3", @@ -125,6 +120,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -133,14 +133,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -157,6 +151,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_3", "sample document": { "sample identifier": "black 384w small volume A4", "location identifier": "A4", @@ -168,6 +163,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -176,14 +176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -200,6 +194,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_4", "sample document": { "sample identifier": "black 384w small volume A5", "location identifier": "A5", @@ -211,6 +206,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -219,14 +219,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -243,6 +237,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_5", "sample document": { "sample identifier": "black 384w small volume A6", "location identifier": "A6", @@ -254,6 +249,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -262,14 +262,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -286,6 +280,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_6", "sample document": { "sample identifier": "black 384w small volume A7", "location identifier": "A7", @@ -297,6 +292,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -305,14 +305,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -329,6 +323,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_7", "sample document": { "sample identifier": "black 384w small volume A8", "location identifier": "A8", @@ -340,6 +335,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -348,14 +348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -372,6 +366,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_8", "sample document": { "sample identifier": "black 384w small volume A9", "location identifier": "A9", @@ -383,6 +378,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -391,14 +391,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -415,6 +409,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_9", "sample document": { "sample identifier": "black 384w small volume A10", "location identifier": "A10", @@ -426,6 +421,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -434,14 +434,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -458,6 +452,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_10", "sample document": { "sample identifier": "black 384w small volume A11", "location identifier": "A11", @@ -469,6 +464,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -477,14 +477,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -501,6 +495,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_11", "sample document": { "sample identifier": "black 384w small volume A12", "location identifier": "A12", @@ -512,6 +507,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -520,14 +520,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -544,6 +538,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_12", "sample document": { "sample identifier": "black 384w small volume A13", "location identifier": "A13", @@ -555,6 +550,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -563,14 +563,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -587,6 +581,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_13", "sample document": { "sample identifier": "black 384w small volume A14", "location identifier": "A14", @@ -598,6 +593,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -606,14 +606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -630,6 +624,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_14", "sample document": { "sample identifier": "black 384w small volume A15", "location identifier": "A15", @@ -641,6 +636,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -649,14 +649,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -673,6 +667,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_15", "sample document": { "sample identifier": "black 384w small volume A16", "location identifier": "A16", @@ -684,6 +679,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -692,14 +692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -716,6 +710,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_16", "sample document": { "sample identifier": "black 384w small volume A17", "location identifier": "A17", @@ -727,6 +722,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -735,14 +735,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -759,6 +753,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_17", "sample document": { "sample identifier": "black 384w small volume A18", "location identifier": "A18", @@ -770,6 +765,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -778,14 +778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -802,6 +796,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_18", "sample document": { "sample identifier": "black 384w small volume A19", "location identifier": "A19", @@ -813,6 +808,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -821,14 +821,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -845,6 +839,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_19", "sample document": { "sample identifier": "black 384w small volume A20", "location identifier": "A20", @@ -856,6 +851,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -864,14 +864,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -888,6 +882,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_20", "sample document": { "sample identifier": "black 384w small volume B1", "location identifier": "B1", @@ -899,6 +894,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -907,14 +907,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -931,6 +925,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_21", "sample document": { "sample identifier": "black 384w small volume B2", "location identifier": "B2", @@ -942,6 +937,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -950,14 +950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -974,6 +968,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_22", "sample document": { "sample identifier": "black 384w small volume B3", "location identifier": "B3", @@ -985,6 +980,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -993,14 +993,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -1017,6 +1011,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_23", "sample document": { "sample identifier": "black 384w small volume B4", "location identifier": "B4", @@ -1028,6 +1023,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1036,14 +1036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -1060,6 +1054,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_24", "sample document": { "sample identifier": "black 384w small volume B5", "location identifier": "B5", @@ -1071,6 +1066,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1079,14 +1079,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -1103,6 +1097,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_25", "sample document": { "sample identifier": "black 384w small volume B6", "location identifier": "B6", @@ -1114,6 +1109,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1122,14 +1122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1146,6 +1140,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_26", "sample document": { "sample identifier": "black 384w small volume B7", "location identifier": "B7", @@ -1157,6 +1152,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1165,14 +1165,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1189,6 +1183,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_27", "sample document": { "sample identifier": "black 384w small volume B8", "location identifier": "B8", @@ -1200,6 +1195,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1208,14 +1208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1232,6 +1226,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_28", "sample document": { "sample identifier": "black 384w small volume B9", "location identifier": "B9", @@ -1243,6 +1238,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1251,14 +1251,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1275,6 +1269,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_29", "sample document": { "sample identifier": "black 384w small volume B10", "location identifier": "B10", @@ -1286,6 +1281,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1294,14 +1294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1318,6 +1312,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_30", "sample document": { "sample identifier": "black 384w small volume B11", "location identifier": "B11", @@ -1329,6 +1324,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1337,14 +1337,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1361,6 +1355,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_31", "sample document": { "sample identifier": "black 384w small volume B12", "location identifier": "B12", @@ -1372,6 +1367,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1380,14 +1380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1404,6 +1398,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_32", "sample document": { "sample identifier": "black 384w small volume B13", "location identifier": "B13", @@ -1415,6 +1410,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1423,14 +1423,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1447,6 +1441,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_33", "sample document": { "sample identifier": "black 384w small volume B14", "location identifier": "B14", @@ -1458,6 +1453,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1466,14 +1466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -1490,6 +1484,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_34", "sample document": { "sample identifier": "black 384w small volume B15", "location identifier": "B15", @@ -1501,6 +1496,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1509,14 +1509,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -1533,6 +1527,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_35", "sample document": { "sample identifier": "black 384w small volume B16", "location identifier": "B16", @@ -1544,6 +1539,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1552,14 +1552,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -1576,6 +1570,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_36", "sample document": { "sample identifier": "black 384w small volume B17", "location identifier": "B17", @@ -1587,6 +1582,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1595,14 +1595,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -1619,6 +1613,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_37", "sample document": { "sample identifier": "black 384w small volume B18", "location identifier": "B18", @@ -1630,6 +1625,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1638,14 +1638,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -1662,6 +1656,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_38", "sample document": { "sample identifier": "black 384w small volume B19", "location identifier": "B19", @@ -1673,6 +1668,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1681,14 +1681,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -1705,6 +1699,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_39", "sample document": { "sample identifier": "black 384w small volume B20", "location identifier": "B20", @@ -1716,6 +1711,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1724,14 +1724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -1748,6 +1742,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_40", "sample document": { "sample identifier": "black 384w small volume C1", "location identifier": "C1", @@ -1759,6 +1754,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1767,14 +1767,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -1791,6 +1785,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_41", "sample document": { "sample identifier": "black 384w small volume C2", "location identifier": "C2", @@ -1802,6 +1797,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1810,14 +1810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -1834,6 +1828,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_42", "sample document": { "sample identifier": "black 384w small volume C3", "location identifier": "C3", @@ -1845,7 +1840,12 @@ } } ], - "experimental data identifier": "20 ul", + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, + "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" }, @@ -1853,14 +1853,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -1877,6 +1871,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_43", "sample document": { "sample identifier": "black 384w small volume C4", "location identifier": "C4", @@ -1888,6 +1883,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1896,14 +1896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -1920,6 +1914,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_44", "sample document": { "sample identifier": "black 384w small volume C5", "location identifier": "C5", @@ -1931,6 +1926,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1939,14 +1939,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -1963,6 +1957,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_45", "sample document": { "sample identifier": "black 384w small volume C6", "location identifier": "C6", @@ -1974,6 +1969,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -1982,14 +1982,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -2006,6 +2000,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_46", "sample document": { "sample identifier": "black 384w small volume C7", "location identifier": "C7", @@ -2017,6 +2012,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2025,14 +2025,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -2049,6 +2043,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_47", "sample document": { "sample identifier": "black 384w small volume C8", "location identifier": "C8", @@ -2060,6 +2055,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2068,14 +2068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -2092,6 +2086,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_48", "sample document": { "sample identifier": "black 384w small volume C9", "location identifier": "C9", @@ -2103,6 +2098,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2111,14 +2111,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -2135,6 +2129,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_49", "sample document": { "sample identifier": "black 384w small volume C10", "location identifier": "C10", @@ -2146,6 +2141,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2154,14 +2154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -2178,6 +2172,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_50", "sample document": { "sample identifier": "black 384w small volume C11", "location identifier": "C11", @@ -2189,6 +2184,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2197,14 +2197,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -2221,6 +2215,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_51", "sample document": { "sample identifier": "black 384w small volume C12", "location identifier": "C12", @@ -2232,6 +2227,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2240,14 +2240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -2264,6 +2258,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_52", "sample document": { "sample identifier": "black 384w small volume C13", "location identifier": "C13", @@ -2275,6 +2270,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2283,14 +2283,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -2307,6 +2301,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_53", "sample document": { "sample identifier": "black 384w small volume C14", "location identifier": "C14", @@ -2318,6 +2313,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2326,14 +2326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -2350,6 +2344,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_54", "sample document": { "sample identifier": "black 384w small volume C15", "location identifier": "C15", @@ -2361,6 +2356,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2369,14 +2369,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -2393,6 +2387,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_55", "sample document": { "sample identifier": "black 384w small volume C16", "location identifier": "C16", @@ -2404,6 +2399,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2412,14 +2412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -2436,6 +2430,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_56", "sample document": { "sample identifier": "black 384w small volume C17", "location identifier": "C17", @@ -2447,6 +2442,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2455,14 +2455,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -2479,6 +2473,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_57", "sample document": { "sample identifier": "black 384w small volume C18", "location identifier": "C18", @@ -2490,6 +2485,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2498,14 +2498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -2522,6 +2516,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_58", "sample document": { "sample identifier": "black 384w small volume C19", "location identifier": "C19", @@ -2533,6 +2528,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2541,14 +2541,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -2565,6 +2559,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_59", "sample document": { "sample identifier": "black 384w small volume C20", "location identifier": "C20", @@ -2576,6 +2571,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2584,14 +2584,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -2608,6 +2602,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_60", "sample document": { "sample identifier": "black 384w small volume D1", "location identifier": "D1", @@ -2619,6 +2614,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2627,14 +2627,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -2651,6 +2645,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_61", "sample document": { "sample identifier": "black 384w small volume D2", "location identifier": "D2", @@ -2662,6 +2657,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2670,14 +2670,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -2694,6 +2688,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_62", "sample document": { "sample identifier": "black 384w small volume D3", "location identifier": "D3", @@ -2705,6 +2700,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2713,14 +2713,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -2737,6 +2731,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_63", "sample document": { "sample identifier": "black 384w small volume D4", "location identifier": "D4", @@ -2748,22 +2743,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -2780,6 +2774,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_64", "sample document": { "sample identifier": "black 384w small volume D5", "location identifier": "D5", @@ -2791,6 +2786,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2799,14 +2799,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -2823,6 +2817,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_65", "sample document": { "sample identifier": "black 384w small volume D6", "location identifier": "D6", @@ -2834,6 +2829,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2842,14 +2842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -2866,6 +2860,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_66", "sample document": { "sample identifier": "black 384w small volume D7", "location identifier": "D7", @@ -2877,6 +2872,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2885,14 +2885,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -2909,6 +2903,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_67", "sample document": { "sample identifier": "black 384w small volume D8", "location identifier": "D8", @@ -2920,6 +2915,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2928,14 +2928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -2952,6 +2946,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_68", "sample document": { "sample identifier": "black 384w small volume D9", "location identifier": "D9", @@ -2963,6 +2958,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -2971,14 +2971,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -2995,6 +2989,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_69", "sample document": { "sample identifier": "black 384w small volume D10", "location identifier": "D10", @@ -3006,6 +3001,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3014,14 +3014,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -3038,6 +3032,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_70", "sample document": { "sample identifier": "black 384w small volume D11", "location identifier": "D11", @@ -3049,6 +3044,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3057,14 +3057,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -3081,6 +3075,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_71", "sample document": { "sample identifier": "black 384w small volume D12", "location identifier": "D12", @@ -3092,6 +3087,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3100,14 +3100,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -3124,6 +3118,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_72", "sample document": { "sample identifier": "black 384w small volume D13", "location identifier": "D13", @@ -3135,6 +3130,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3143,14 +3143,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -3167,6 +3161,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_73", "sample document": { "sample identifier": "black 384w small volume D14", "location identifier": "D14", @@ -3178,6 +3173,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3186,14 +3186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -3210,6 +3204,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_74", "sample document": { "sample identifier": "black 384w small volume D15", "location identifier": "D15", @@ -3221,6 +3216,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3229,14 +3229,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -3253,6 +3247,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_75", "sample document": { "sample identifier": "black 384w small volume D16", "location identifier": "D16", @@ -3264,6 +3259,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3272,14 +3272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -3296,6 +3290,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_76", "sample document": { "sample identifier": "black 384w small volume D17", "location identifier": "D17", @@ -3307,6 +3302,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3315,14 +3315,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -3339,6 +3333,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_77", "sample document": { "sample identifier": "black 384w small volume D18", "location identifier": "D18", @@ -3350,6 +3345,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3358,14 +3358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -3382,6 +3376,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_78", "sample document": { "sample identifier": "black 384w small volume D19", "location identifier": "D19", @@ -3393,6 +3388,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3401,14 +3401,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -3425,6 +3419,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_79", "sample document": { "sample identifier": "black 384w small volume D20", "location identifier": "D20", @@ -3436,6 +3431,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3444,14 +3444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -3468,6 +3462,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_80", "sample document": { "sample identifier": "black 384w small volume E1", "location identifier": "E1", @@ -3479,6 +3474,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3487,14 +3487,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -3511,6 +3505,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_81", "sample document": { "sample identifier": "black 384w small volume E2", "location identifier": "E2", @@ -3522,6 +3517,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3530,14 +3530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -3554,6 +3548,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_82", "sample document": { "sample identifier": "black 384w small volume E3", "location identifier": "E3", @@ -3565,6 +3560,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3573,14 +3573,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -3597,6 +3591,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_83", "sample document": { "sample identifier": "black 384w small volume E4", "location identifier": "E4", @@ -3608,6 +3603,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3616,14 +3616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -3640,6 +3634,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_84", "sample document": { "sample identifier": "black 384w small volume E5", "location identifier": "E5", @@ -3651,6 +3646,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3659,14 +3659,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -3683,6 +3677,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_85", "sample document": { "sample identifier": "black 384w small volume E6", "location identifier": "E6", @@ -3694,6 +3689,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3702,14 +3702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -3726,6 +3720,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_86", "sample document": { "sample identifier": "black 384w small volume E7", "location identifier": "E7", @@ -3737,6 +3732,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3745,14 +3745,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -3769,6 +3763,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_87", "sample document": { "sample identifier": "black 384w small volume E8", "location identifier": "E8", @@ -3780,6 +3775,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3788,14 +3788,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -3812,6 +3806,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_88", "sample document": { "sample identifier": "black 384w small volume E9", "location identifier": "E9", @@ -3823,6 +3818,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3831,14 +3831,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -3855,6 +3849,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_89", "sample document": { "sample identifier": "black 384w small volume E10", "location identifier": "E10", @@ -3866,6 +3861,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3874,14 +3874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -3898,6 +3892,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_90", "sample document": { "sample identifier": "black 384w small volume E11", "location identifier": "E11", @@ -3909,6 +3904,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -3917,14 +3917,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -3941,6 +3935,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_91", "sample document": { "sample identifier": "black 384w small volume E12", "location identifier": "E12", @@ -3952,22 +3947,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -3984,6 +3978,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_92", "sample document": { "sample identifier": "black 384w small volume E13", "location identifier": "E13", @@ -3995,6 +3990,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4003,14 +4003,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -4027,6 +4021,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_93", "sample document": { "sample identifier": "black 384w small volume E14", "location identifier": "E14", @@ -4038,6 +4033,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4046,14 +4046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -4070,6 +4064,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_94", "sample document": { "sample identifier": "black 384w small volume E15", "location identifier": "E15", @@ -4081,6 +4076,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4089,14 +4089,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -4113,6 +4107,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_95", "sample document": { "sample identifier": "black 384w small volume E16", "location identifier": "E16", @@ -4124,6 +4119,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4132,14 +4132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -4156,6 +4150,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_96", "sample document": { "sample identifier": "black 384w small volume E17", "location identifier": "E17", @@ -4167,6 +4162,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4175,14 +4175,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -4199,6 +4193,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_97", "sample document": { "sample identifier": "black 384w small volume E18", "location identifier": "E18", @@ -4210,6 +4205,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4218,14 +4218,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -4242,6 +4236,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_98", "sample document": { "sample identifier": "black 384w small volume E19", "location identifier": "E19", @@ -4253,6 +4248,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4261,14 +4261,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_99", "device control aggregate document": { "device control document": [ { @@ -4285,6 +4279,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_99", "sample document": { "sample identifier": "black 384w small volume E20", "location identifier": "E20", @@ -4296,6 +4291,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4304,14 +4304,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_100", "device control aggregate document": { "device control document": [ { @@ -4328,6 +4322,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_100", "sample document": { "sample identifier": "black 384w small volume F1", "location identifier": "F1", @@ -4339,6 +4334,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4347,14 +4347,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_101", "device control aggregate document": { "device control document": [ { @@ -4371,6 +4365,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_101", "sample document": { "sample identifier": "black 384w small volume F2", "location identifier": "F2", @@ -4382,6 +4377,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4390,14 +4390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_102", "device control aggregate document": { "device control document": [ { @@ -4414,6 +4408,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_102", "sample document": { "sample identifier": "black 384w small volume F3", "location identifier": "F3", @@ -4425,6 +4420,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4433,14 +4433,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_103", "device control aggregate document": { "device control document": [ { @@ -4457,6 +4451,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_103", "sample document": { "sample identifier": "black 384w small volume F4", "location identifier": "F4", @@ -4468,6 +4463,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4476,14 +4476,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_104", "device control aggregate document": { "device control document": [ { @@ -4500,6 +4494,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_104", "sample document": { "sample identifier": "black 384w small volume F5", "location identifier": "F5", @@ -4511,6 +4506,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4519,14 +4519,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_105", "device control aggregate document": { "device control document": [ { @@ -4543,6 +4537,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_105", "sample document": { "sample identifier": "black 384w small volume F6", "location identifier": "F6", @@ -4554,6 +4549,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4562,14 +4562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_106", "device control aggregate document": { "device control document": [ { @@ -4586,6 +4580,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_106", "sample document": { "sample identifier": "black 384w small volume F7", "location identifier": "F7", @@ -4597,6 +4592,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4605,14 +4605,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_107", "device control aggregate document": { "device control document": [ { @@ -4629,6 +4623,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_107", "sample document": { "sample identifier": "black 384w small volume F8", "location identifier": "F8", @@ -4640,6 +4635,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4648,14 +4648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_108", "device control aggregate document": { "device control document": [ { @@ -4672,6 +4666,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_108", "sample document": { "sample identifier": "black 384w small volume F9", "location identifier": "F9", @@ -4683,6 +4678,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4691,14 +4691,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_109", "device control aggregate document": { "device control document": [ { @@ -4715,6 +4709,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_109", "sample document": { "sample identifier": "black 384w small volume F10", "location identifier": "F10", @@ -4726,6 +4721,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4734,14 +4734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_110", "device control aggregate document": { "device control document": [ { @@ -4758,6 +4752,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_110", "sample document": { "sample identifier": "black 384w small volume F11", "location identifier": "F11", @@ -4769,6 +4764,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4777,14 +4777,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_111", "device control aggregate document": { "device control document": [ { @@ -4801,6 +4795,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_111", "sample document": { "sample identifier": "black 384w small volume F12", "location identifier": "F12", @@ -4812,6 +4807,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4820,14 +4820,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_112", "device control aggregate document": { "device control document": [ { @@ -4844,6 +4838,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_112", "sample document": { "sample identifier": "black 384w small volume F13", "location identifier": "F13", @@ -4855,6 +4850,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4862,15 +4862,9 @@ "analyst": "USER" }, { - "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_113", "device control aggregate document": { "device control document": [ { @@ -4887,6 +4881,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_113", "sample document": { "sample identifier": "black 384w small volume F14", "location identifier": "F14", @@ -4898,6 +4893,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4906,14 +4906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_114", "device control aggregate document": { "device control document": [ { @@ -4930,6 +4924,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_114", "sample document": { "sample identifier": "black 384w small volume F15", "location identifier": "F15", @@ -4941,6 +4936,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4949,14 +4949,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_115", "device control aggregate document": { "device control document": [ { @@ -4973,6 +4967,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_115", "sample document": { "sample identifier": "black 384w small volume F16", "location identifier": "F16", @@ -4984,6 +4979,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -4992,14 +4992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_116", "device control aggregate document": { "device control document": [ { @@ -5016,6 +5010,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_116", "sample document": { "sample identifier": "black 384w small volume F17", "location identifier": "F17", @@ -5027,6 +5022,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5035,14 +5035,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_117", "device control aggregate document": { "device control document": [ { @@ -5059,6 +5053,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_117", "sample document": { "sample identifier": "black 384w small volume F18", "location identifier": "F18", @@ -5070,6 +5065,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5078,14 +5078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_118", "device control aggregate document": { "device control document": [ { @@ -5102,6 +5096,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_118", "sample document": { "sample identifier": "black 384w small volume F19", "location identifier": "F19", @@ -5113,6 +5108,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5121,14 +5121,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_119", "device control aggregate document": { "device control document": [ { @@ -5145,6 +5139,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_119", "sample document": { "sample identifier": "black 384w small volume F20", "location identifier": "F20", @@ -5156,6 +5151,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5164,14 +5164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_120", "device control aggregate document": { "device control document": [ { @@ -5188,6 +5182,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_120", "sample document": { "sample identifier": "black 384w small volume G1", "location identifier": "G1", @@ -5199,6 +5194,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5207,14 +5207,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_121", "device control aggregate document": { "device control document": [ { @@ -5231,6 +5225,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_121", "sample document": { "sample identifier": "black 384w small volume G2", "location identifier": "G2", @@ -5242,6 +5237,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5250,14 +5250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_122", "device control aggregate document": { "device control document": [ { @@ -5274,6 +5268,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_122", "sample document": { "sample identifier": "black 384w small volume G3", "location identifier": "G3", @@ -5285,6 +5280,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5293,14 +5293,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_123", "device control aggregate document": { "device control document": [ { @@ -5317,6 +5311,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_123", "sample document": { "sample identifier": "black 384w small volume G4", "location identifier": "G4", @@ -5328,6 +5323,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5336,14 +5336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_124", "device control aggregate document": { "device control document": [ { @@ -5360,6 +5354,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_124", "sample document": { "sample identifier": "black 384w small volume G5", "location identifier": "G5", @@ -5371,6 +5366,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5379,14 +5379,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_125", "device control aggregate document": { "device control document": [ { @@ -5403,6 +5397,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_125", "sample document": { "sample identifier": "black 384w small volume G6", "location identifier": "G6", @@ -5414,6 +5409,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5422,14 +5422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_126", "device control aggregate document": { "device control document": [ { @@ -5446,6 +5440,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_126", "sample document": { "sample identifier": "black 384w small volume G7", "location identifier": "G7", @@ -5457,6 +5452,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5465,14 +5465,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_127", "device control aggregate document": { "device control document": [ { @@ -5489,6 +5483,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_127", "sample document": { "sample identifier": "black 384w small volume G8", "location identifier": "G8", @@ -5500,6 +5495,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5508,14 +5508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_128", "device control aggregate document": { "device control document": [ { @@ -5532,6 +5526,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_128", "sample document": { "sample identifier": "black 384w small volume G9", "location identifier": "G9", @@ -5543,6 +5538,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5551,14 +5551,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_129", "device control aggregate document": { "device control document": [ { @@ -5575,6 +5569,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_129", "sample document": { "sample identifier": "black 384w small volume G10", "location identifier": "G10", @@ -5586,6 +5581,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5594,14 +5594,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_130", "device control aggregate document": { "device control document": [ { @@ -5618,6 +5612,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_130", "sample document": { "sample identifier": "black 384w small volume G11", "location identifier": "G11", @@ -5629,6 +5624,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5637,14 +5637,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_131", "device control aggregate document": { "device control document": [ { @@ -5661,6 +5655,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_131", "sample document": { "sample identifier": "black 384w small volume G12", "location identifier": "G12", @@ -5672,6 +5667,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5680,14 +5680,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_132", "device control aggregate document": { "device control document": [ { @@ -5704,6 +5698,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_132", "sample document": { "sample identifier": "black 384w small volume G13", "location identifier": "G13", @@ -5715,6 +5710,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5723,14 +5723,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_133", "device control aggregate document": { "device control document": [ { @@ -5747,6 +5741,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_133", "sample document": { "sample identifier": "black 384w small volume G14", "location identifier": "G14", @@ -5758,22 +5753,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_134", "device control aggregate document": { "device control document": [ { @@ -5790,6 +5784,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_134", "sample document": { "sample identifier": "black 384w small volume G15", "location identifier": "G15", @@ -5801,6 +5796,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5809,14 +5809,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_135", "device control aggregate document": { "device control document": [ { @@ -5833,6 +5827,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_135", "sample document": { "sample identifier": "black 384w small volume G16", "location identifier": "G16", @@ -5844,6 +5839,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5852,14 +5852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_136", "device control aggregate document": { "device control document": [ { @@ -5876,6 +5870,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_136", "sample document": { "sample identifier": "black 384w small volume G17", "location identifier": "G17", @@ -5887,6 +5882,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5895,14 +5895,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_137", "device control aggregate document": { "device control document": [ { @@ -5919,6 +5913,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_137", "sample document": { "sample identifier": "black 384w small volume G18", "location identifier": "G18", @@ -5930,6 +5925,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5938,14 +5938,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_138", "device control aggregate document": { "device control document": [ { @@ -5962,6 +5956,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_138", "sample document": { "sample identifier": "black 384w small volume G19", "location identifier": "G19", @@ -5973,6 +5968,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -5981,14 +5981,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_139", "device control aggregate document": { "device control document": [ { @@ -6005,6 +5999,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_139", "sample document": { "sample identifier": "black 384w small volume G20", "location identifier": "G20", @@ -6016,6 +6011,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6024,14 +6024,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_140", "device control aggregate document": { "device control document": [ { @@ -6048,6 +6042,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_140", "sample document": { "sample identifier": "black 384w small volume H1", "location identifier": "H1", @@ -6059,6 +6054,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6067,14 +6067,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_141", "device control aggregate document": { "device control document": [ { @@ -6091,6 +6085,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_141", "sample document": { "sample identifier": "black 384w small volume H2", "location identifier": "H2", @@ -6102,6 +6097,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6110,14 +6110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_142", "device control aggregate document": { "device control document": [ { @@ -6134,6 +6128,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_142", "sample document": { "sample identifier": "black 384w small volume H3", "location identifier": "H3", @@ -6145,6 +6140,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6153,14 +6153,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_143", "device control aggregate document": { "device control document": [ { @@ -6177,6 +6171,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_143", "sample document": { "sample identifier": "black 384w small volume H4", "location identifier": "H4", @@ -6188,6 +6183,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6196,14 +6196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_144", "device control aggregate document": { "device control document": [ { @@ -6220,6 +6214,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_144", "sample document": { "sample identifier": "black 384w small volume H5", "location identifier": "H5", @@ -6231,6 +6226,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6239,14 +6239,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_145", "device control aggregate document": { "device control document": [ { @@ -6263,6 +6257,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_145", "sample document": { "sample identifier": "black 384w small volume H6", "location identifier": "H6", @@ -6274,6 +6269,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6282,14 +6282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_146", "device control aggregate document": { "device control document": [ { @@ -6306,6 +6300,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_146", "sample document": { "sample identifier": "black 384w small volume H7", "location identifier": "H7", @@ -6317,6 +6312,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6325,14 +6325,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_147", "device control aggregate document": { "device control document": [ { @@ -6349,6 +6343,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_147", "sample document": { "sample identifier": "black 384w small volume H8", "location identifier": "H8", @@ -6360,6 +6355,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6368,14 +6368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_148", "device control aggregate document": { "device control document": [ { @@ -6392,6 +6386,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_148", "sample document": { "sample identifier": "black 384w small volume H9", "location identifier": "H9", @@ -6403,6 +6398,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6411,14 +6411,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_149", "device control aggregate document": { "device control document": [ { @@ -6435,6 +6429,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_149", "sample document": { "sample identifier": "black 384w small volume H10", "location identifier": "H10", @@ -6446,6 +6441,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6454,14 +6454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_150", "device control aggregate document": { "device control document": [ { @@ -6478,6 +6472,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_150", "sample document": { "sample identifier": "black 384w small volume H11", "location identifier": "H11", @@ -6489,6 +6484,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6497,14 +6497,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_151", "device control aggregate document": { "device control document": [ { @@ -6521,6 +6515,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_151", "sample document": { "sample identifier": "black 384w small volume H12", "location identifier": "H12", @@ -6532,6 +6527,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6540,14 +6540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_152", "device control aggregate document": { "device control document": [ { @@ -6564,6 +6558,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_152", "sample document": { "sample identifier": "black 384w small volume H13", "location identifier": "H13", @@ -6575,6 +6570,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6583,14 +6583,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_153", "device control aggregate document": { "device control document": [ { @@ -6607,6 +6601,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_153", "sample document": { "sample identifier": "black 384w small volume H14", "location identifier": "H14", @@ -6618,6 +6613,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6626,14 +6626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_154", "device control aggregate document": { "device control document": [ { @@ -6650,6 +6644,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_154", "sample document": { "sample identifier": "black 384w small volume H15", "location identifier": "H15", @@ -6661,6 +6656,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6668,15 +6668,9 @@ "analyst": "USER" }, { - "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_155", "device control aggregate document": { "device control document": [ { @@ -6693,6 +6687,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_155", "sample document": { "sample identifier": "black 384w small volume H16", "location identifier": "H16", @@ -6704,6 +6699,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6712,14 +6712,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_156", "device control aggregate document": { "device control document": [ { @@ -6736,6 +6730,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_156", "sample document": { "sample identifier": "black 384w small volume H17", "location identifier": "H17", @@ -6747,6 +6742,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6755,14 +6755,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_157", "device control aggregate document": { "device control document": [ { @@ -6779,6 +6773,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_157", "sample document": { "sample identifier": "black 384w small volume H18", "location identifier": "H18", @@ -6790,6 +6785,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6798,14 +6798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_158", "device control aggregate document": { "device control document": [ { @@ -6822,6 +6816,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_158", "sample document": { "sample identifier": "black 384w small volume H19", "location identifier": "H19", @@ -6833,6 +6828,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6841,14 +6841,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_159", "device control aggregate document": { "device control document": [ { @@ -6865,6 +6859,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_159", "sample document": { "sample identifier": "black 384w small volume H20", "location identifier": "H20", @@ -6876,6 +6871,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6884,14 +6884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_160", "device control aggregate document": { "device control document": [ { @@ -6908,6 +6902,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_160", "sample document": { "sample identifier": "black 384w small volume I1", "location identifier": "I1", @@ -6919,6 +6914,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6927,14 +6927,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_161", "device control aggregate document": { "device control document": [ { @@ -6951,6 +6945,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_161", "sample document": { "sample identifier": "black 384w small volume I2", "location identifier": "I2", @@ -6962,6 +6957,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -6970,14 +6970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_162", "device control aggregate document": { "device control document": [ { @@ -6994,6 +6988,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_162", "sample document": { "sample identifier": "black 384w small volume I3", "location identifier": "I3", @@ -7005,6 +7000,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7013,14 +7013,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_163", "device control aggregate document": { "device control document": [ { @@ -7037,6 +7031,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_163", "sample document": { "sample identifier": "black 384w small volume I4", "location identifier": "I4", @@ -7048,6 +7043,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7056,14 +7056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_164", "device control aggregate document": { "device control document": [ { @@ -7080,6 +7074,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_164", "sample document": { "sample identifier": "black 384w small volume I5", "location identifier": "I5", @@ -7091,6 +7086,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7099,14 +7099,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_165", "device control aggregate document": { "device control document": [ { @@ -7123,6 +7117,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_165", "sample document": { "sample identifier": "black 384w small volume I6", "location identifier": "I6", @@ -7134,6 +7129,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7142,14 +7142,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_166", "device control aggregate document": { "device control document": [ { @@ -7166,6 +7160,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_166", "sample document": { "sample identifier": "black 384w small volume I7", "location identifier": "I7", @@ -7177,6 +7172,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7185,14 +7185,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_167", "device control aggregate document": { "device control document": [ { @@ -7209,6 +7203,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_167", "sample document": { "sample identifier": "black 384w small volume I8", "location identifier": "I8", @@ -7220,6 +7215,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7228,14 +7228,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_168", "device control aggregate document": { "device control document": [ { @@ -7252,6 +7246,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_168", "sample document": { "sample identifier": "black 384w small volume I9", "location identifier": "I9", @@ -7263,6 +7258,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7271,14 +7271,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_169", "device control aggregate document": { "device control document": [ { @@ -7295,6 +7289,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_169", "sample document": { "sample identifier": "black 384w small volume I10", "location identifier": "I10", @@ -7306,6 +7301,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7314,14 +7314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_170", "device control aggregate document": { "device control document": [ { @@ -7338,6 +7332,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_170", "sample document": { "sample identifier": "black 384w small volume I11", "location identifier": "I11", @@ -7349,6 +7344,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7357,14 +7357,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_171", "device control aggregate document": { "device control document": [ { @@ -7381,6 +7375,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_171", "sample document": { "sample identifier": "black 384w small volume I12", "location identifier": "I12", @@ -7392,6 +7387,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7400,14 +7400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_172", "device control aggregate document": { "device control document": [ { @@ -7424,6 +7418,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_172", "sample document": { "sample identifier": "black 384w small volume I13", "location identifier": "I13", @@ -7435,6 +7430,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7443,14 +7443,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_173", "device control aggregate document": { "device control document": [ { @@ -7467,6 +7461,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_173", "sample document": { "sample identifier": "black 384w small volume I14", "location identifier": "I14", @@ -7478,6 +7473,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7486,14 +7486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_174", "device control aggregate document": { "device control document": [ { @@ -7510,6 +7504,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_174", "sample document": { "sample identifier": "black 384w small volume I15", "location identifier": "I15", @@ -7521,6 +7516,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7529,14 +7529,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_175", "device control aggregate document": { "device control document": [ { @@ -7553,6 +7547,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_175", "sample document": { "sample identifier": "black 384w small volume I16", "location identifier": "I16", @@ -7564,22 +7559,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_176", "device control aggregate document": { "device control document": [ { @@ -7596,6 +7590,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_176", "sample document": { "sample identifier": "black 384w small volume I17", "location identifier": "I17", @@ -7607,6 +7602,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7615,14 +7615,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_177", "device control aggregate document": { "device control document": [ { @@ -7639,6 +7633,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_177", "sample document": { "sample identifier": "black 384w small volume I18", "location identifier": "I18", @@ -7650,6 +7645,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7658,14 +7658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_178", "device control aggregate document": { "device control document": [ { @@ -7682,6 +7676,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_178", "sample document": { "sample identifier": "black 384w small volume I19", "location identifier": "I19", @@ -7693,6 +7688,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7701,14 +7701,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_179", "device control aggregate document": { "device control document": [ { @@ -7725,6 +7719,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_179", "sample document": { "sample identifier": "black 384w small volume I20", "location identifier": "I20", @@ -7736,6 +7731,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7744,14 +7744,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_180", "device control aggregate document": { "device control document": [ { @@ -7768,6 +7762,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_180", "sample document": { "sample identifier": "black 384w small volume J1", "location identifier": "J1", @@ -7779,6 +7774,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7787,14 +7787,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_181", "device control aggregate document": { "device control document": [ { @@ -7811,6 +7805,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_181", "sample document": { "sample identifier": "black 384w small volume J2", "location identifier": "J2", @@ -7822,6 +7817,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7830,14 +7830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_182", "device control aggregate document": { "device control document": [ { @@ -7854,6 +7848,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_182", "sample document": { "sample identifier": "black 384w small volume J3", "location identifier": "J3", @@ -7865,6 +7860,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7873,14 +7873,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_183", "device control aggregate document": { "device control document": [ { @@ -7897,6 +7891,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_183", "sample document": { "sample identifier": "black 384w small volume J4", "location identifier": "J4", @@ -7908,6 +7903,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7916,14 +7916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_184", "device control aggregate document": { "device control document": [ { @@ -7940,6 +7934,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_184", "sample document": { "sample identifier": "black 384w small volume J5", "location identifier": "J5", @@ -7951,6 +7946,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -7959,14 +7959,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_185", "device control aggregate document": { "device control document": [ { @@ -7983,6 +7977,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_185", "sample document": { "sample identifier": "black 384w small volume J6", "location identifier": "J6", @@ -7994,6 +7989,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8002,14 +8002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_186", "device control aggregate document": { "device control document": [ { @@ -8026,6 +8020,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_186", "sample document": { "sample identifier": "black 384w small volume J7", "location identifier": "J7", @@ -8037,6 +8032,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8045,14 +8045,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_187", "device control aggregate document": { "device control document": [ { @@ -8069,6 +8063,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_187", "sample document": { "sample identifier": "black 384w small volume J8", "location identifier": "J8", @@ -8080,6 +8075,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8088,14 +8088,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_188", "device control aggregate document": { "device control document": [ { @@ -8112,6 +8106,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_188", "sample document": { "sample identifier": "black 384w small volume J9", "location identifier": "J9", @@ -8123,6 +8118,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8131,14 +8131,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_189", "device control aggregate document": { "device control document": [ { @@ -8155,6 +8149,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_189", "sample document": { "sample identifier": "black 384w small volume J10", "location identifier": "J10", @@ -8166,6 +8161,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8174,14 +8174,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_190", "device control aggregate document": { "device control document": [ { @@ -8198,6 +8192,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_190", "sample document": { "sample identifier": "black 384w small volume J11", "location identifier": "J11", @@ -8209,6 +8204,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8217,14 +8217,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_191", "device control aggregate document": { "device control document": [ { @@ -8241,6 +8235,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_191", "sample document": { "sample identifier": "black 384w small volume J12", "location identifier": "J12", @@ -8252,6 +8247,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8260,14 +8260,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_192", "device control aggregate document": { "device control document": [ { @@ -8284,6 +8278,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_192", "sample document": { "sample identifier": "black 384w small volume J13", "location identifier": "J13", @@ -8295,6 +8290,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8303,14 +8303,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_193", "device control aggregate document": { "device control document": [ { @@ -8327,6 +8321,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_193", "sample document": { "sample identifier": "black 384w small volume J14", "location identifier": "J14", @@ -8338,6 +8333,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8346,14 +8346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_194", "device control aggregate document": { "device control document": [ { @@ -8370,6 +8364,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_194", "sample document": { "sample identifier": "black 384w small volume J15", "location identifier": "J15", @@ -8381,6 +8376,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8389,14 +8389,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_195", "device control aggregate document": { "device control document": [ { @@ -8413,6 +8407,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_195", "sample document": { "sample identifier": "black 384w small volume J16", "location identifier": "J16", @@ -8424,6 +8419,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8432,14 +8432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_196", "device control aggregate document": { "device control document": [ { @@ -8456,6 +8450,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_196", "sample document": { "sample identifier": "black 384w small volume J17", "location identifier": "J17", @@ -8467,6 +8462,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8474,15 +8474,9 @@ "analyst": "USER" }, { - "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_197", "device control aggregate document": { "device control document": [ { @@ -8499,6 +8493,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_197", "sample document": { "sample identifier": "black 384w small volume J18", "location identifier": "J18", @@ -8510,6 +8505,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8518,14 +8518,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_198", "device control aggregate document": { "device control document": [ { @@ -8542,6 +8536,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_198", "sample document": { "sample identifier": "black 384w small volume J19", "location identifier": "J19", @@ -8553,6 +8548,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8561,14 +8561,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_199", "device control aggregate document": { "device control document": [ { @@ -8585,6 +8579,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_199", "sample document": { "sample identifier": "black 384w small volume J20", "location identifier": "J20", @@ -8596,6 +8591,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8604,14 +8604,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_200", "device control aggregate document": { "device control document": [ { @@ -8628,6 +8622,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_200", "sample document": { "sample identifier": "black 384w small volume K1", "location identifier": "K1", @@ -8639,6 +8634,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8647,14 +8647,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_201", "device control aggregate document": { "device control document": [ { @@ -8671,6 +8665,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_201", "sample document": { "sample identifier": "black 384w small volume K2", "location identifier": "K2", @@ -8682,6 +8677,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8690,14 +8690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_202", "device control aggregate document": { "device control document": [ { @@ -8714,6 +8708,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_202", "sample document": { "sample identifier": "black 384w small volume K3", "location identifier": "K3", @@ -8725,6 +8720,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8733,14 +8733,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_203", "device control aggregate document": { "device control document": [ { @@ -8757,6 +8751,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_203", "sample document": { "sample identifier": "black 384w small volume K4", "location identifier": "K4", @@ -8768,6 +8763,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8776,14 +8776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_204", "device control aggregate document": { "device control document": [ { @@ -8800,6 +8794,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_204", "sample document": { "sample identifier": "black 384w small volume K5", "location identifier": "K5", @@ -8811,6 +8806,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8819,14 +8819,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_205", "device control aggregate document": { "device control document": [ { @@ -8843,6 +8837,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_205", "sample document": { "sample identifier": "black 384w small volume K6", "location identifier": "K6", @@ -8854,6 +8849,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8862,14 +8862,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_206", "device control aggregate document": { "device control document": [ { @@ -8886,6 +8880,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_206", "sample document": { "sample identifier": "black 384w small volume K7", "location identifier": "K7", @@ -8897,6 +8892,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8905,14 +8905,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_207", "device control aggregate document": { "device control document": [ { @@ -8929,6 +8923,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_207", "sample document": { "sample identifier": "black 384w small volume K8", "location identifier": "K8", @@ -8940,6 +8935,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8948,14 +8948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_208", "device control aggregate document": { "device control document": [ { @@ -8972,6 +8966,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_208", "sample document": { "sample identifier": "black 384w small volume K9", "location identifier": "K9", @@ -8983,6 +8978,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -8991,14 +8991,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_209", "device control aggregate document": { "device control document": [ { @@ -9015,6 +9009,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_209", "sample document": { "sample identifier": "black 384w small volume K10", "location identifier": "K10", @@ -9026,6 +9021,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9034,14 +9034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_210", "device control aggregate document": { "device control document": [ { @@ -9058,6 +9052,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_210", "sample document": { "sample identifier": "black 384w small volume K11", "location identifier": "K11", @@ -9069,6 +9064,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9077,14 +9077,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_211", "device control aggregate document": { "device control document": [ { @@ -9101,6 +9095,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_211", "sample document": { "sample identifier": "black 384w small volume K12", "location identifier": "K12", @@ -9112,6 +9107,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9120,14 +9120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_212", "device control aggregate document": { "device control document": [ { @@ -9144,6 +9138,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_212", "sample document": { "sample identifier": "black 384w small volume K13", "location identifier": "K13", @@ -9155,6 +9150,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9163,14 +9163,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_213", "device control aggregate document": { "device control document": [ { @@ -9187,6 +9181,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_213", "sample document": { "sample identifier": "black 384w small volume K14", "location identifier": "K14", @@ -9198,6 +9193,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9206,14 +9206,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_214", "device control aggregate document": { "device control document": [ { @@ -9230,6 +9224,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_214", "sample document": { "sample identifier": "black 384w small volume K15", "location identifier": "K15", @@ -9241,6 +9236,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9249,14 +9249,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_215", "device control aggregate document": { "device control document": [ { @@ -9273,6 +9267,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_215", "sample document": { "sample identifier": "black 384w small volume K16", "location identifier": "K16", @@ -9284,6 +9279,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9292,14 +9292,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_216", "device control aggregate document": { "device control document": [ { @@ -9316,6 +9310,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_216", "sample document": { "sample identifier": "black 384w small volume K17", "location identifier": "K17", @@ -9327,6 +9322,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9335,14 +9335,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_217", "device control aggregate document": { "device control document": [ { @@ -9359,6 +9353,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_217", "sample document": { "sample identifier": "black 384w small volume K18", "location identifier": "K18", @@ -9370,22 +9365,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_218", "device control aggregate document": { "device control document": [ { @@ -9402,6 +9396,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_218", "sample document": { "sample identifier": "black 384w small volume K19", "location identifier": "K19", @@ -9413,6 +9408,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9421,14 +9421,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_219", "device control aggregate document": { "device control document": [ { @@ -9445,6 +9439,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_219", "sample document": { "sample identifier": "black 384w small volume K20", "location identifier": "K20", @@ -9456,6 +9451,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9464,14 +9464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_220", "device control aggregate document": { "device control document": [ { @@ -9488,6 +9482,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_220", "sample document": { "sample identifier": "black 384w small volume L1", "location identifier": "L1", @@ -9499,6 +9494,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9507,14 +9507,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_221", "device control aggregate document": { "device control document": [ { @@ -9531,6 +9525,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_221", "sample document": { "sample identifier": "black 384w small volume L2", "location identifier": "L2", @@ -9542,6 +9537,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9550,14 +9550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_222", "device control aggregate document": { "device control document": [ { @@ -9574,6 +9568,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_222", "sample document": { "sample identifier": "black 384w small volume L3", "location identifier": "L3", @@ -9585,6 +9580,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9593,14 +9593,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_223", "device control aggregate document": { "device control document": [ { @@ -9617,6 +9611,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_223", "sample document": { "sample identifier": "black 384w small volume L4", "location identifier": "L4", @@ -9628,6 +9623,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9636,14 +9636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_224", "device control aggregate document": { "device control document": [ { @@ -9660,6 +9654,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_224", "sample document": { "sample identifier": "black 384w small volume L5", "location identifier": "L5", @@ -9671,6 +9666,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9679,14 +9679,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_225", "device control aggregate document": { "device control document": [ { @@ -9703,6 +9697,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_225", "sample document": { "sample identifier": "black 384w small volume L6", "location identifier": "L6", @@ -9714,6 +9709,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9722,14 +9722,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_226", "device control aggregate document": { "device control document": [ { @@ -9746,6 +9740,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_226", "sample document": { "sample identifier": "black 384w small volume L7", "location identifier": "L7", @@ -9757,6 +9752,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9765,14 +9765,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_227", "device control aggregate document": { "device control document": [ { @@ -9789,6 +9783,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_227", "sample document": { "sample identifier": "black 384w small volume L8", "location identifier": "L8", @@ -9800,6 +9795,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9808,14 +9808,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_228", "device control aggregate document": { "device control document": [ { @@ -9832,6 +9826,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_228", "sample document": { "sample identifier": "black 384w small volume L9", "location identifier": "L9", @@ -9843,6 +9838,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9851,14 +9851,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_229", "device control aggregate document": { "device control document": [ { @@ -9875,6 +9869,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_229", "sample document": { "sample identifier": "black 384w small volume L10", "location identifier": "L10", @@ -9886,6 +9881,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9894,14 +9894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_230", "device control aggregate document": { "device control document": [ { @@ -9918,6 +9912,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_230", "sample document": { "sample identifier": "black 384w small volume L11", "location identifier": "L11", @@ -9929,6 +9924,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9937,14 +9937,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_231", "device control aggregate document": { "device control document": [ { @@ -9961,6 +9955,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_231", "sample document": { "sample identifier": "black 384w small volume L12", "location identifier": "L12", @@ -9972,6 +9967,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -9980,14 +9980,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_232", "device control aggregate document": { "device control document": [ { @@ -10004,6 +9998,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_232", "sample document": { "sample identifier": "black 384w small volume L13", "location identifier": "L13", @@ -10015,6 +10010,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10023,14 +10023,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_233", "device control aggregate document": { "device control document": [ { @@ -10047,6 +10041,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_233", "sample document": { "sample identifier": "black 384w small volume L14", "location identifier": "L14", @@ -10058,6 +10053,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10066,14 +10066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_234", "device control aggregate document": { "device control document": [ { @@ -10090,6 +10084,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_234", "sample document": { "sample identifier": "black 384w small volume L15", "location identifier": "L15", @@ -10101,6 +10096,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10109,14 +10109,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_235", "device control aggregate document": { "device control document": [ { @@ -10133,6 +10127,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_235", "sample document": { "sample identifier": "black 384w small volume L16", "location identifier": "L16", @@ -10144,6 +10139,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10152,14 +10152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_236", "device control aggregate document": { "device control document": [ { @@ -10176,6 +10170,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_236", "sample document": { "sample identifier": "black 384w small volume L17", "location identifier": "L17", @@ -10187,6 +10182,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10195,14 +10195,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_237", "device control aggregate document": { "device control document": [ { @@ -10219,6 +10213,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_237", "sample document": { "sample identifier": "black 384w small volume L18", "location identifier": "L18", @@ -10230,6 +10225,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10238,14 +10238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_238", "device control aggregate document": { "device control document": [ { @@ -10262,6 +10256,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_238", "sample document": { "sample identifier": "black 384w small volume L19", "location identifier": "L19", @@ -10273,6 +10268,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10280,15 +10280,9 @@ "analyst": "USER" }, { - "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_239", "device control aggregate document": { "device control document": [ { @@ -10305,6 +10299,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_239", "sample document": { "sample identifier": "black 384w small volume L20", "location identifier": "L20", @@ -10316,6 +10311,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10324,14 +10324,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_240", "device control aggregate document": { "device control document": [ { @@ -10348,6 +10342,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_240", "sample document": { "sample identifier": "black 384w small volume M1", "location identifier": "M1", @@ -10359,6 +10354,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10367,14 +10367,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_241", "device control aggregate document": { "device control document": [ { @@ -10391,6 +10385,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_241", "sample document": { "sample identifier": "black 384w small volume M2", "location identifier": "M2", @@ -10402,6 +10397,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10410,14 +10410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_242", "device control aggregate document": { "device control document": [ { @@ -10434,6 +10428,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_242", "sample document": { "sample identifier": "black 384w small volume M3", "location identifier": "M3", @@ -10445,6 +10440,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10453,14 +10453,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_243", "device control aggregate document": { "device control document": [ { @@ -10477,6 +10471,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_243", "sample document": { "sample identifier": "black 384w small volume M4", "location identifier": "M4", @@ -10488,6 +10483,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10496,14 +10496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_244", "device control aggregate document": { "device control document": [ { @@ -10520,6 +10514,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_244", "sample document": { "sample identifier": "black 384w small volume M5", "location identifier": "M5", @@ -10531,6 +10526,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10539,14 +10539,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_245", "device control aggregate document": { "device control document": [ { @@ -10563,6 +10557,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_245", "sample document": { "sample identifier": "black 384w small volume M6", "location identifier": "M6", @@ -10574,6 +10569,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10582,14 +10582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_246", "device control aggregate document": { "device control document": [ { @@ -10606,6 +10600,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_246", "sample document": { "sample identifier": "black 384w small volume M7", "location identifier": "M7", @@ -10617,6 +10612,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10625,14 +10625,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_247", "device control aggregate document": { "device control document": [ { @@ -10649,6 +10643,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_247", "sample document": { "sample identifier": "black 384w small volume M8", "location identifier": "M8", @@ -10660,6 +10655,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10668,14 +10668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_248", "device control aggregate document": { "device control document": [ { @@ -10692,6 +10686,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_248", "sample document": { "sample identifier": "black 384w small volume M9", "location identifier": "M9", @@ -10703,6 +10698,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10711,14 +10711,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_249", "device control aggregate document": { "device control document": [ { @@ -10735,6 +10729,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_249", "sample document": { "sample identifier": "black 384w small volume M10", "location identifier": "M10", @@ -10746,6 +10741,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10754,14 +10754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_250", "device control aggregate document": { "device control document": [ { @@ -10778,6 +10772,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_250", "sample document": { "sample identifier": "black 384w small volume M11", "location identifier": "M11", @@ -10789,6 +10784,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10797,14 +10797,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_251", "device control aggregate document": { "device control document": [ { @@ -10821,6 +10815,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_251", "sample document": { "sample identifier": "black 384w small volume M12", "location identifier": "M12", @@ -10832,6 +10827,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10840,14 +10840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_252", "device control aggregate document": { "device control document": [ { @@ -10864,6 +10858,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_252", "sample document": { "sample identifier": "black 384w small volume M13", "location identifier": "M13", @@ -10875,6 +10870,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10883,14 +10883,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_253", "device control aggregate document": { "device control document": [ { @@ -10907,6 +10901,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_253", "sample document": { "sample identifier": "black 384w small volume M14", "location identifier": "M14", @@ -10918,6 +10913,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10926,14 +10926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_254", "device control aggregate document": { "device control document": [ { @@ -10950,6 +10944,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_254", "sample document": { "sample identifier": "black 384w small volume M15", "location identifier": "M15", @@ -10961,6 +10956,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -10969,14 +10969,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_255", "device control aggregate document": { "device control document": [ { @@ -10993,6 +10987,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_255", "sample document": { "sample identifier": "black 384w small volume M16", "location identifier": "M16", @@ -11004,6 +10999,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11012,14 +11012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_256", "device control aggregate document": { "device control document": [ { @@ -11036,6 +11030,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_256", "sample document": { "sample identifier": "black 384w small volume M17", "location identifier": "M17", @@ -11047,6 +11042,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11055,14 +11055,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_257", "device control aggregate document": { "device control document": [ { @@ -11079,6 +11073,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_257", "sample document": { "sample identifier": "black 384w small volume M18", "location identifier": "M18", @@ -11090,6 +11085,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11098,14 +11098,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_258", "device control aggregate document": { "device control document": [ { @@ -11122,6 +11116,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_258", "sample document": { "sample identifier": "black 384w small volume M19", "location identifier": "M19", @@ -11133,6 +11128,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11141,14 +11141,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_259", "device control aggregate document": { "device control document": [ { @@ -11165,6 +11159,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_259", "sample document": { "sample identifier": "black 384w small volume M20", "location identifier": "M20", @@ -11176,22 +11171,21 @@ } } ], - "experimental data identifier": "20 ul", - "experiment type": "Transcreener ADP2 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-02-29T14:34:46+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experimental data identifier": "20 ul", + "experiment type": "Transcreener ADP2 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_260", "device control aggregate document": { "device control document": [ { @@ -11208,6 +11202,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_260", "sample document": { "sample identifier": "black 384w small volume N1", "location identifier": "N1", @@ -11219,6 +11214,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11227,14 +11227,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_261", "device control aggregate document": { "device control document": [ { @@ -11251,6 +11245,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_261", "sample document": { "sample identifier": "black 384w small volume N2", "location identifier": "N2", @@ -11262,6 +11257,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11270,14 +11270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_262", "device control aggregate document": { "device control document": [ { @@ -11294,6 +11288,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_262", "sample document": { "sample identifier": "black 384w small volume N3", "location identifier": "N3", @@ -11305,6 +11300,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11313,14 +11313,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_263", "device control aggregate document": { "device control document": [ { @@ -11337,6 +11331,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_263", "sample document": { "sample identifier": "black 384w small volume N4", "location identifier": "N4", @@ -11348,6 +11343,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11356,14 +11356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_264", "device control aggregate document": { "device control document": [ { @@ -11380,6 +11374,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_264", "sample document": { "sample identifier": "black 384w small volume N5", "location identifier": "N5", @@ -11391,6 +11386,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11399,14 +11399,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_265", "device control aggregate document": { "device control document": [ { @@ -11423,6 +11417,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_265", "sample document": { "sample identifier": "black 384w small volume N6", "location identifier": "N6", @@ -11434,6 +11429,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11442,14 +11442,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_266", "device control aggregate document": { "device control document": [ { @@ -11466,6 +11460,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_266", "sample document": { "sample identifier": "black 384w small volume N7", "location identifier": "N7", @@ -11477,6 +11472,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11485,14 +11485,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_267", "device control aggregate document": { "device control document": [ { @@ -11509,6 +11503,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_267", "sample document": { "sample identifier": "black 384w small volume N8", "location identifier": "N8", @@ -11520,6 +11515,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11528,14 +11528,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_268", "device control aggregate document": { "device control document": [ { @@ -11552,6 +11546,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_268", "sample document": { "sample identifier": "black 384w small volume N9", "location identifier": "N9", @@ -11563,6 +11558,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11571,14 +11571,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_269", "device control aggregate document": { "device control document": [ { @@ -11595,6 +11589,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_269", "sample document": { "sample identifier": "black 384w small volume N10", "location identifier": "N10", @@ -11606,6 +11601,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11614,14 +11614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_270", "device control aggregate document": { "device control document": [ { @@ -11638,6 +11632,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_270", "sample document": { "sample identifier": "black 384w small volume N11", "location identifier": "N11", @@ -11649,6 +11644,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11657,14 +11657,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_271", "device control aggregate document": { "device control document": [ { @@ -11681,6 +11675,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_271", "sample document": { "sample identifier": "black 384w small volume N12", "location identifier": "N12", @@ -11692,6 +11687,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11700,14 +11700,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_272", "device control aggregate document": { "device control document": [ { @@ -11724,6 +11718,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_272", "sample document": { "sample identifier": "black 384w small volume N13", "location identifier": "N13", @@ -11735,6 +11730,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11743,14 +11743,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_273", "device control aggregate document": { "device control document": [ { @@ -11767,6 +11761,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_273", "sample document": { "sample identifier": "black 384w small volume N14", "location identifier": "N14", @@ -11778,6 +11773,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11786,14 +11786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_274", "device control aggregate document": { "device control document": [ { @@ -11810,6 +11804,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_274", "sample document": { "sample identifier": "black 384w small volume N15", "location identifier": "N15", @@ -11821,6 +11816,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11829,14 +11829,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_275", "device control aggregate document": { "device control document": [ { @@ -11853,6 +11847,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_275", "sample document": { "sample identifier": "black 384w small volume N16", "location identifier": "N16", @@ -11864,6 +11859,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11872,14 +11872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_276", "device control aggregate document": { "device control document": [ { @@ -11896,6 +11890,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_276", "sample document": { "sample identifier": "black 384w small volume N17", "location identifier": "N17", @@ -11907,6 +11902,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11915,14 +11915,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_277", "device control aggregate document": { "device control document": [ { @@ -11939,6 +11933,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_277", "sample document": { "sample identifier": "black 384w small volume N18", "location identifier": "N18", @@ -11950,6 +11945,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -11958,14 +11958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_278", "device control aggregate document": { "device control document": [ { @@ -11982,6 +11976,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_278", "sample document": { "sample identifier": "black 384w small volume N19", "location identifier": "N19", @@ -11993,6 +11988,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12001,14 +12001,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_279", "device control aggregate document": { "device control document": [ { @@ -12025,6 +12019,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_279", "sample document": { "sample identifier": "black 384w small volume N20", "location identifier": "N20", @@ -12036,6 +12031,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12044,14 +12044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_280", "device control aggregate document": { "device control document": [ { @@ -12068,6 +12062,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_280", "sample document": { "sample identifier": "black 384w small volume O1", "location identifier": "O1", @@ -12079,6 +12074,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12087,14 +12087,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_281", "device control aggregate document": { "device control document": [ { @@ -12111,6 +12105,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_281", "sample document": { "sample identifier": "black 384w small volume O2", "location identifier": "O2", @@ -12122,6 +12117,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12130,14 +12130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_282", "device control aggregate document": { "device control document": [ { @@ -12154,6 +12148,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_282", "sample document": { "sample identifier": "black 384w small volume O3", "location identifier": "O3", @@ -12165,6 +12160,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12173,14 +12173,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_283", "device control aggregate document": { "device control document": [ { @@ -12197,6 +12191,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_283", "sample document": { "sample identifier": "black 384w small volume O4", "location identifier": "O4", @@ -12208,6 +12203,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12216,14 +12216,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_284", "device control aggregate document": { "device control document": [ { @@ -12240,6 +12234,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_284", "sample document": { "sample identifier": "black 384w small volume O5", "location identifier": "O5", @@ -12251,6 +12246,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12259,14 +12259,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_285", "device control aggregate document": { "device control document": [ { @@ -12283,6 +12277,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_285", "sample document": { "sample identifier": "black 384w small volume O6", "location identifier": "O6", @@ -12294,6 +12289,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12302,14 +12302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_286", "device control aggregate document": { "device control document": [ { @@ -12326,6 +12320,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_286", "sample document": { "sample identifier": "black 384w small volume O7", "location identifier": "O7", @@ -12337,6 +12332,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12345,14 +12345,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_287", "device control aggregate document": { "device control document": [ { @@ -12369,6 +12363,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_287", "sample document": { "sample identifier": "black 384w small volume O8", "location identifier": "O8", @@ -12380,6 +12375,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12388,14 +12388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_288", "device control aggregate document": { "device control document": [ { @@ -12412,6 +12406,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_288", "sample document": { "sample identifier": "black 384w small volume O9", "location identifier": "O9", @@ -12423,6 +12418,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12431,14 +12431,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_289", "device control aggregate document": { "device control document": [ { @@ -12455,6 +12449,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_289", "sample document": { "sample identifier": "black 384w small volume O10", "location identifier": "O10", @@ -12466,6 +12461,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12474,14 +12474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_290", "device control aggregate document": { "device control document": [ { @@ -12498,6 +12492,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_290", "sample document": { "sample identifier": "black 384w small volume O12", "location identifier": "O12", @@ -12509,6 +12504,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12517,14 +12517,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_291", "device control aggregate document": { "device control document": [ { @@ -12541,6 +12535,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_291", "sample document": { "sample identifier": "black 384w small volume P1", "location identifier": "P1", @@ -12552,6 +12547,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12560,14 +12560,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_292", "device control aggregate document": { "device control document": [ { @@ -12584,6 +12578,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_292", "sample document": { "sample identifier": "black 384w small volume P2", "location identifier": "P2", @@ -12595,6 +12590,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12603,14 +12603,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_293", "device control aggregate document": { "device control document": [ { @@ -12627,6 +12621,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_293", "sample document": { "sample identifier": "black 384w small volume P3", "location identifier": "P3", @@ -12638,6 +12633,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12646,14 +12646,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_294", "device control aggregate document": { "device control document": [ { @@ -12670,6 +12664,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_294", "sample document": { "sample identifier": "black 384w small volume P4", "location identifier": "P4", @@ -12681,6 +12676,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12689,14 +12689,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_295", "device control aggregate document": { "device control document": [ { @@ -12713,6 +12707,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_295", "sample document": { "sample identifier": "black 384w small volume P5", "location identifier": "P5", @@ -12724,6 +12719,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12732,14 +12732,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_296", "device control aggregate document": { "device control document": [ { @@ -12756,6 +12750,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_296", "sample document": { "sample identifier": "black 384w small volume P6", "location identifier": "P6", @@ -12767,6 +12762,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12775,14 +12775,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_297", "device control aggregate document": { "device control document": [ { @@ -12799,6 +12793,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_297", "sample document": { "sample identifier": "black 384w small volume P7", "location identifier": "P7", @@ -12810,6 +12805,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12818,14 +12818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_298", "device control aggregate document": { "device control document": [ { @@ -12842,6 +12836,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_298", "sample document": { "sample identifier": "black 384w small volume P8", "location identifier": "P8", @@ -12853,6 +12848,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12861,14 +12861,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_299", "device control aggregate document": { "device control document": [ { @@ -12885,6 +12879,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_299", "sample document": { "sample identifier": "black 384w small volume P9", "location identifier": "P9", @@ -12896,6 +12891,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12904,14 +12904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_300", "device control aggregate document": { "device control document": [ { @@ -12928,6 +12922,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_300", "sample document": { "sample identifier": "black 384w small volume P10", "location identifier": "P10", @@ -12939,6 +12934,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12947,14 +12947,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-02-29T14:34:46+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_301", "device control aggregate document": { "device control document": [ { @@ -12971,6 +12965,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_301", "sample document": { "sample identifier": "black 384w small volume P12", "location identifier": "P12", @@ -12982,6 +12977,11 @@ } } ], + "measurement time": "2016-02-29T14:34:46+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experimental data identifier": "20 ul", "experiment type": "Transcreener ADP2 FI", "container type": "well plate" @@ -12989,19 +12989,19 @@ "analyst": "USER" } ], - "device system document": { - "device identifier": "N/A", - "model number": "N/A", - "product manufacturer": "BMG LABTECH" - }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "16-02-29 14-34-46 Transcreener ADP2 FI.json", "data system instance identifier": "N/A", "file name": "16-02-29 14-34-46 Transcreener ADP2 FI.csv", "UNC path": "C:\\Program Files (x86)\\BMG\\PHERAstar\\User\\Data", - "software name": "BMG MARS", "ASM converter name": "allotropy_bmg_mars", - "ASM converter version": "0.1.49" + "ASM converter version": "0.1.56", + "software name": "BMG MARS" + }, + "device system document": { + "device identifier": "N/A", + "model number": "N/A", + "product manufacturer": "BMG LABTECH" } } } diff --git a/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json b/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json index 52c2c26e0..e8918b908 100644 --- a/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json +++ b/tests/parsers/bmg_mars/testdata/16-03-03 13-25-45 472 QC 384 FI.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -28,6 +22,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_0", "sample document": { "sample identifier": "472-0016 A1", "location identifier": "A1", @@ -39,6 +34,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -46,14 +46,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -70,6 +64,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_1", "sample document": { "sample identifier": "472-0016 A2", "location identifier": "A2", @@ -81,6 +76,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -88,14 +88,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -112,6 +106,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_2", "sample document": { "sample identifier": "472-0016 A3", "location identifier": "A3", @@ -123,6 +118,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -130,14 +130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -154,6 +148,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_3", "sample document": { "sample identifier": "472-0016 A12", "location identifier": "A12", @@ -165,6 +160,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -172,14 +172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -196,6 +190,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_4", "sample document": { "sample identifier": "472-0016 A13", "location identifier": "A13", @@ -207,6 +202,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -214,14 +214,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -238,6 +232,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_5", "sample document": { "sample identifier": "472-0016 A22", "location identifier": "A22", @@ -249,6 +244,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -256,14 +256,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -280,6 +274,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_6", "sample document": { "sample identifier": "472-0016 A23", "location identifier": "A23", @@ -291,6 +286,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -298,14 +298,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -322,6 +316,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_7", "sample document": { "sample identifier": "472-0016 A24", "location identifier": "A24", @@ -333,6 +328,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -340,14 +340,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -364,6 +358,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_8", "sample document": { "sample identifier": "472-0016 B1", "location identifier": "B1", @@ -375,6 +370,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -382,14 +382,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -406,6 +400,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_9", "sample document": { "sample identifier": "472-0016 B2", "location identifier": "B2", @@ -417,6 +412,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -424,14 +424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -448,6 +442,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_10", "sample document": { "sample identifier": "472-0016 B3", "location identifier": "B3", @@ -459,6 +454,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -466,14 +466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -490,6 +484,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_11", "sample document": { "sample identifier": "472-0016 B12", "location identifier": "B12", @@ -501,6 +496,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -508,14 +508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -532,6 +526,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_12", "sample document": { "sample identifier": "472-0016 B13", "location identifier": "B13", @@ -543,6 +538,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -550,14 +550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -574,6 +568,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_13", "sample document": { "sample identifier": "472-0016 B22", "location identifier": "B22", @@ -585,6 +580,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -592,14 +592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -616,6 +610,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_14", "sample document": { "sample identifier": "472-0016 B23", "location identifier": "B23", @@ -627,6 +622,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -634,14 +634,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -658,6 +652,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_15", "sample document": { "sample identifier": "472-0016 B24", "location identifier": "B24", @@ -669,6 +664,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -676,14 +676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -700,6 +694,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_16", "sample document": { "sample identifier": "472-0016 C1", "location identifier": "C1", @@ -711,6 +706,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -718,14 +718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -742,6 +736,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_17", "sample document": { "sample identifier": "472-0016 C2", "location identifier": "C2", @@ -753,6 +748,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -760,14 +760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -784,6 +778,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_18", "sample document": { "sample identifier": "472-0016 C3", "location identifier": "C3", @@ -795,6 +790,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -802,14 +802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -826,6 +820,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_19", "sample document": { "sample identifier": "472-0016 C12", "location identifier": "C12", @@ -837,6 +832,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -844,14 +844,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -868,6 +862,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_20", "sample document": { "sample identifier": "472-0016 C13", "location identifier": "C13", @@ -879,6 +874,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -886,14 +886,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -910,6 +904,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_21", "sample document": { "sample identifier": "472-0016 C22", "location identifier": "C22", @@ -921,6 +916,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -928,14 +928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -952,6 +946,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_22", "sample document": { "sample identifier": "472-0016 C23", "location identifier": "C23", @@ -963,6 +958,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -970,14 +970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -994,6 +988,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_23", "sample document": { "sample identifier": "472-0016 C24", "location identifier": "C24", @@ -1005,6 +1000,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1012,14 +1012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -1036,6 +1030,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_24", "sample document": { "sample identifier": "472-0016 D12", "location identifier": "D12", @@ -1047,6 +1042,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1054,14 +1054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -1078,6 +1072,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_25", "sample document": { "sample identifier": "472-0016 D13", "location identifier": "D13", @@ -1089,21 +1084,20 @@ } } ], - "experiment type": "472 QC 384 FI", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-03-03T13:25:45+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experiment type": "472 QC 384 FI", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1120,6 +1114,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_26", "sample document": { "sample identifier": "472-0016 E12", "location identifier": "E12", @@ -1131,6 +1126,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1138,14 +1138,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1162,6 +1156,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_27", "sample document": { "sample identifier": "472-0016 E13", "location identifier": "E13", @@ -1173,6 +1168,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1180,14 +1180,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1204,6 +1198,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_28", "sample document": { "sample identifier": "472-0016 F12", "location identifier": "F12", @@ -1215,6 +1210,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1222,14 +1222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1246,6 +1240,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_29", "sample document": { "sample identifier": "472-0016 F13", "location identifier": "F13", @@ -1257,6 +1252,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1264,14 +1264,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1288,6 +1282,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_30", "sample document": { "sample identifier": "472-0016 G12", "location identifier": "G12", @@ -1299,6 +1294,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1306,14 +1306,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1330,6 +1324,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_31", "sample document": { "sample identifier": "472-0016 G13", "location identifier": "G13", @@ -1341,6 +1336,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1348,14 +1348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1372,6 +1366,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_32", "sample document": { "sample identifier": "472-0016 H12", "location identifier": "H12", @@ -1383,6 +1378,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1390,14 +1390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1414,6 +1408,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_33", "sample document": { "sample identifier": "472-0016 H13", "location identifier": "H13", @@ -1425,6 +1420,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1432,14 +1432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -1456,6 +1450,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_34", "sample document": { "sample identifier": "472-0016 I12", "location identifier": "I12", @@ -1467,6 +1462,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1474,14 +1474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -1498,6 +1492,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_35", "sample document": { "sample identifier": "472-0016 I13", "location identifier": "I13", @@ -1509,6 +1504,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1516,14 +1516,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -1540,6 +1534,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_36", "sample document": { "sample identifier": "472-0016 J12", "location identifier": "J12", @@ -1551,6 +1546,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1558,14 +1558,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -1582,6 +1576,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_37", "sample document": { "sample identifier": "472-0016 J13", "location identifier": "J13", @@ -1593,6 +1588,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1600,14 +1600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -1624,6 +1618,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_38", "sample document": { "sample identifier": "472-0016 K12", "location identifier": "K12", @@ -1635,6 +1630,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1642,14 +1642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -1666,6 +1660,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_39", "sample document": { "sample identifier": "472-0016 K13", "location identifier": "K13", @@ -1677,6 +1672,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1684,14 +1684,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -1708,6 +1702,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_40", "sample document": { "sample identifier": "472-0016 L12", "location identifier": "L12", @@ -1719,6 +1714,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1726,14 +1726,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -1750,6 +1744,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_41", "sample document": { "sample identifier": "472-0016 L13", "location identifier": "L13", @@ -1761,6 +1756,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1768,14 +1768,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -1792,6 +1786,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_42", "sample document": { "sample identifier": "472-0016 M12", "location identifier": "M12", @@ -1803,6 +1798,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1810,14 +1810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -1834,6 +1828,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_43", "sample document": { "sample identifier": "472-0016 M13", "location identifier": "M13", @@ -1845,6 +1840,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1852,14 +1852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -1876,6 +1870,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_44", "sample document": { "sample identifier": "472-0016 N1", "location identifier": "N1", @@ -1887,6 +1882,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1894,14 +1894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -1918,6 +1912,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_45", "sample document": { "sample identifier": "472-0016 N2", "location identifier": "N2", @@ -1929,6 +1924,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1936,14 +1936,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -1960,6 +1954,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_46", "sample document": { "sample identifier": "472-0016 N3", "location identifier": "N3", @@ -1971,6 +1966,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -1978,14 +1978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -2002,6 +1996,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_47", "sample document": { "sample identifier": "472-0016 N12", "location identifier": "N12", @@ -2013,6 +2008,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2020,14 +2020,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -2044,6 +2038,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_48", "sample document": { "sample identifier": "472-0016 N13", "location identifier": "N13", @@ -2055,6 +2050,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2062,14 +2062,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -2086,6 +2080,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_49", "sample document": { "sample identifier": "472-0016 N22", "location identifier": "N22", @@ -2097,6 +2092,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2104,14 +2104,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -2128,6 +2122,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_50", "sample document": { "sample identifier": "472-0016 N23", "location identifier": "N23", @@ -2139,6 +2134,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2146,14 +2146,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -2170,6 +2164,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_51", "sample document": { "sample identifier": "472-0016 N24", "location identifier": "N24", @@ -2181,6 +2176,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2188,14 +2188,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -2212,6 +2206,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_52", "sample document": { "sample identifier": "472-0016 O1", "location identifier": "O1", @@ -2223,6 +2218,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2230,14 +2230,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -2254,6 +2248,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_53", "sample document": { "sample identifier": "472-0016 O2", "location identifier": "O2", @@ -2265,6 +2260,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2272,14 +2272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -2296,6 +2290,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_54", "sample document": { "sample identifier": "472-0016 O3", "location identifier": "O3", @@ -2307,6 +2302,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2314,14 +2314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -2338,6 +2332,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_55", "sample document": { "sample identifier": "472-0016 O12", "location identifier": "O12", @@ -2349,6 +2344,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2356,14 +2356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -2380,6 +2374,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_56", "sample document": { "sample identifier": "472-0016 O13", "location identifier": "O13", @@ -2391,6 +2386,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2398,14 +2398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -2422,6 +2416,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_57", "sample document": { "sample identifier": "472-0016 O22", "location identifier": "O22", @@ -2433,6 +2428,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2440,14 +2440,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -2464,6 +2458,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_58", "sample document": { "sample identifier": "472-0016 O23", "location identifier": "O23", @@ -2475,6 +2470,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2482,14 +2482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -2506,6 +2500,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_59", "sample document": { "sample identifier": "472-0016 O24", "location identifier": "O24", @@ -2517,6 +2512,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2524,14 +2524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -2548,6 +2542,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_60", "sample document": { "sample identifier": "472-0016 P1", "location identifier": "P1", @@ -2559,6 +2554,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2566,14 +2566,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -2590,6 +2584,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_61", "sample document": { "sample identifier": "472-0016 P2", "location identifier": "P2", @@ -2601,6 +2596,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2608,14 +2608,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -2632,6 +2626,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_62", "sample document": { "sample identifier": "472-0016 P3", "location identifier": "P3", @@ -2643,6 +2638,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2650,14 +2650,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -2674,6 +2668,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_63", "sample document": { "sample identifier": "472-0016 P12", "location identifier": "P12", @@ -2685,6 +2680,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2692,14 +2692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -2716,6 +2710,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_64", "sample document": { "sample identifier": "472-0016 P13", "location identifier": "P13", @@ -2727,6 +2722,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2734,14 +2734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -2758,6 +2752,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_65", "sample document": { "sample identifier": "472-0016 P22", "location identifier": "P22", @@ -2769,6 +2764,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2776,14 +2776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -2800,6 +2794,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_66", "sample document": { "sample identifier": "472-0016 P23", "location identifier": "P23", @@ -2811,6 +2806,11 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, @@ -2818,14 +2818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T13:25:45+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -2842,6 +2836,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_67", "sample document": { "sample identifier": "472-0016 P24", "location identifier": "P24", @@ -2853,25 +2848,30 @@ } } ], + "measurement time": "2016-03-03T13:25:45+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 QC 384 FI", "container type": "well plate" }, "analyst": "USER" } ], - "device system document": { - "device identifier": "N/A", - "model number": "N/A", - "product manufacturer": "BMG LABTECH" - }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "16-03-03 13-25-45 472 QC 384 FI.json", "data system instance identifier": "N/A", "file name": "16-03-03 13-25-45 472 QC 384 FI.csv", "UNC path": "C:\\Program Files (x86)\\BMG\\PHERAstar\\User\\Data", - "software name": "BMG MARS", "ASM converter name": "allotropy_bmg_mars", - "ASM converter version": "0.1.49" + "ASM converter version": "0.1.56", + "software name": "BMG MARS" + }, + "device system document": { + "device identifier": "N/A", + "model number": "N/A", + "product manufacturer": "BMG LABTECH" } } } diff --git a/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json b/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json index aae2f0c36..cac9365f9 100644 --- a/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json +++ b/tests/parsers/bmg_mars/testdata/16-03-03 16-54-03 472 ABS 384 QC.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -24,6 +18,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_0", "sample document": { "sample identifier": "472-0016 A1", "location identifier": "A1", @@ -35,6 +30,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -42,14 +42,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -62,6 +56,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_1", "sample document": { "sample identifier": "472-0016 A2", "location identifier": "A2", @@ -73,6 +68,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -80,14 +80,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -100,6 +94,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_2", "sample document": { "sample identifier": "472-0016 A3", "location identifier": "A3", @@ -111,6 +106,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -118,14 +118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -138,6 +132,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_3", "sample document": { "sample identifier": "472-0016 A4", "location identifier": "A4", @@ -149,6 +144,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -156,14 +156,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -176,6 +170,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_4", "sample document": { "sample identifier": "472-0016 A5", "location identifier": "A5", @@ -187,6 +182,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -194,14 +194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -214,6 +208,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_5", "sample document": { "sample identifier": "472-0016 A6", "location identifier": "A6", @@ -225,6 +220,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -232,14 +232,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -252,6 +246,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_6", "sample document": { "sample identifier": "472-0016 A7", "location identifier": "A7", @@ -263,6 +258,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -270,14 +270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -290,6 +284,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_7", "sample document": { "sample identifier": "472-0016 A18", "location identifier": "A18", @@ -301,6 +296,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -308,14 +308,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -328,6 +322,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_8", "sample document": { "sample identifier": "472-0016 A19", "location identifier": "A19", @@ -339,6 +334,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -346,14 +346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -366,6 +360,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_9", "sample document": { "sample identifier": "472-0016 A20", "location identifier": "A20", @@ -377,6 +372,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -384,14 +384,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -404,6 +398,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_10", "sample document": { "sample identifier": "472-0016 A21", "location identifier": "A21", @@ -415,6 +410,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -422,14 +422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -442,6 +436,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_11", "sample document": { "sample identifier": "472-0016 A22", "location identifier": "A22", @@ -453,6 +448,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -460,14 +460,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -480,6 +474,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_12", "sample document": { "sample identifier": "472-0016 A23", "location identifier": "A23", @@ -491,6 +486,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -498,14 +498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -518,6 +512,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_13", "sample document": { "sample identifier": "472-0016 A24", "location identifier": "A24", @@ -529,6 +524,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -536,14 +536,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -556,6 +550,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_14", "sample document": { "sample identifier": "472-0016 B1", "location identifier": "B1", @@ -567,6 +562,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -574,14 +574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -594,6 +588,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_15", "sample document": { "sample identifier": "472-0016 B2", "location identifier": "B2", @@ -605,6 +600,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -612,14 +612,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -632,6 +626,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_16", "sample document": { "sample identifier": "472-0016 B3", "location identifier": "B3", @@ -643,6 +638,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -650,14 +650,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -670,6 +664,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_17", "sample document": { "sample identifier": "472-0016 B4", "location identifier": "B4", @@ -681,6 +676,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -688,14 +688,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -708,6 +702,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_18", "sample document": { "sample identifier": "472-0016 B5", "location identifier": "B5", @@ -719,6 +714,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -726,14 +726,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -746,6 +740,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_19", "sample document": { "sample identifier": "472-0016 B6", "location identifier": "B6", @@ -757,6 +752,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -764,14 +764,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -784,6 +778,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_20", "sample document": { "sample identifier": "472-0016 B7", "location identifier": "B7", @@ -795,6 +790,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -802,14 +802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -822,6 +816,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_21", "sample document": { "sample identifier": "472-0016 B18", "location identifier": "B18", @@ -833,6 +828,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -840,14 +840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -860,6 +854,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_22", "sample document": { "sample identifier": "472-0016 B19", "location identifier": "B19", @@ -871,6 +866,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -878,14 +878,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -898,6 +892,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_23", "sample document": { "sample identifier": "472-0016 B20", "location identifier": "B20", @@ -909,6 +904,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -916,14 +916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -936,6 +930,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_24", "sample document": { "sample identifier": "472-0016 B21", "location identifier": "B21", @@ -947,6 +942,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -954,14 +954,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -974,6 +968,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_25", "sample document": { "sample identifier": "472-0016 B22", "location identifier": "B22", @@ -985,6 +980,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -992,14 +992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1012,6 +1006,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_26", "sample document": { "sample identifier": "472-0016 B23", "location identifier": "B23", @@ -1023,6 +1018,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1030,14 +1030,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1050,6 +1044,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_27", "sample document": { "sample identifier": "472-0016 B24", "location identifier": "B24", @@ -1061,6 +1056,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1068,14 +1068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1088,6 +1082,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_28", "sample document": { "sample identifier": "472-0016 C1", "location identifier": "C1", @@ -1099,6 +1094,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1106,14 +1106,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1126,6 +1120,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_29", "sample document": { "sample identifier": "472-0016 C2", "location identifier": "C2", @@ -1137,6 +1132,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1144,14 +1144,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1164,6 +1158,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_30", "sample document": { "sample identifier": "472-0016 C3", "location identifier": "C3", @@ -1175,6 +1170,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1182,14 +1182,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1202,6 +1196,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_31", "sample document": { "sample identifier": "472-0016 C4", "location identifier": "C4", @@ -1213,6 +1208,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1220,14 +1220,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1240,6 +1234,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_32", "sample document": { "sample identifier": "472-0016 C5", "location identifier": "C5", @@ -1251,6 +1246,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1258,14 +1258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1278,6 +1272,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_33", "sample document": { "sample identifier": "472-0016 C6", "location identifier": "C6", @@ -1289,6 +1284,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1296,14 +1296,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -1316,6 +1310,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_34", "sample document": { "sample identifier": "472-0016 D1", "location identifier": "D1", @@ -1327,6 +1322,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1334,14 +1334,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -1354,6 +1348,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_35", "sample document": { "sample identifier": "472-0016 D2", "location identifier": "D2", @@ -1365,6 +1360,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1372,14 +1372,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -1392,6 +1386,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_36", "sample document": { "sample identifier": "472-0016 D3", "location identifier": "D3", @@ -1403,6 +1398,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1410,14 +1410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -1430,6 +1424,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_37", "sample document": { "sample identifier": "472-0016 D4", "location identifier": "D4", @@ -1441,6 +1436,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1448,14 +1448,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -1468,6 +1462,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_38", "sample document": { "sample identifier": "472-0016 D5", "location identifier": "D5", @@ -1479,6 +1474,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1486,14 +1486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -1506,6 +1500,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_39", "sample document": { "sample identifier": "472-0016 D6", "location identifier": "D6", @@ -1517,6 +1512,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1524,14 +1524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -1544,6 +1538,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_40", "sample document": { "sample identifier": "472-0016 E1", "location identifier": "E1", @@ -1555,6 +1550,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1562,14 +1562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -1582,6 +1576,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_41", "sample document": { "sample identifier": "472-0016 E2", "location identifier": "E2", @@ -1593,6 +1588,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1600,14 +1600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -1620,6 +1614,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_42", "sample document": { "sample identifier": "472-0016 E3", "location identifier": "E3", @@ -1631,6 +1626,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1638,14 +1638,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -1658,6 +1652,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_43", "sample document": { "sample identifier": "472-0016 E4", "location identifier": "E4", @@ -1669,6 +1664,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1676,14 +1676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -1696,6 +1690,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_44", "sample document": { "sample identifier": "472-0016 E5", "location identifier": "E5", @@ -1707,6 +1702,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1714,14 +1714,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -1734,6 +1728,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_45", "sample document": { "sample identifier": "472-0016 E6", "location identifier": "E6", @@ -1745,6 +1740,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1752,14 +1752,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -1772,6 +1766,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_46", "sample document": { "sample identifier": "472-0016 F1", "location identifier": "F1", @@ -1783,6 +1778,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1790,14 +1790,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -1810,6 +1804,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_47", "sample document": { "sample identifier": "472-0016 F2", "location identifier": "F2", @@ -1821,6 +1816,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1828,14 +1828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -1848,6 +1842,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_48", "sample document": { "sample identifier": "472-0016 F3", "location identifier": "F3", @@ -1859,6 +1854,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1866,14 +1866,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -1886,6 +1880,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_49", "sample document": { "sample identifier": "472-0016 F4", "location identifier": "F4", @@ -1897,6 +1892,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1904,14 +1904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -1924,6 +1918,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_50", "sample document": { "sample identifier": "472-0016 F5", "location identifier": "F5", @@ -1935,6 +1930,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1942,14 +1942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -1962,6 +1956,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_51", "sample document": { "sample identifier": "472-0016 F6", "location identifier": "F6", @@ -1973,6 +1968,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -1980,14 +1980,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -2000,6 +1994,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_52", "sample document": { "sample identifier": "472-0016 G1", "location identifier": "G1", @@ -2011,6 +2006,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2018,14 +2018,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -2038,6 +2032,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_53", "sample document": { "sample identifier": "472-0016 G2", "location identifier": "G2", @@ -2049,6 +2044,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2056,14 +2056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -2076,6 +2070,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_54", "sample document": { "sample identifier": "472-0016 G3", "location identifier": "G3", @@ -2087,6 +2082,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2094,14 +2094,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -2114,6 +2108,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_55", "sample document": { "sample identifier": "472-0016 G4", "location identifier": "G4", @@ -2125,6 +2120,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2132,14 +2132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -2152,6 +2146,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_56", "sample document": { "sample identifier": "472-0016 G5", "location identifier": "G5", @@ -2163,21 +2158,20 @@ } } ], - "experiment type": "472 ABS 384 QC", - "container type": "well plate" - }, - "analyst": "USER" - }, - { - "measurement aggregate document": { "measurement time": "2016-03-03T16:54:03+00:00", "plate well count": { "value": 384, "unit": "#" }, + "experiment type": "472 ABS 384 QC", + "container type": "well plate" + }, + "analyst": "USER" + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -2190,6 +2184,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_57", "sample document": { "sample identifier": "472-0016 G6", "location identifier": "G6", @@ -2201,6 +2196,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2208,14 +2208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -2228,6 +2222,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_58", "sample document": { "sample identifier": "472-0016 H1", "location identifier": "H1", @@ -2239,6 +2234,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2246,14 +2246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -2266,6 +2260,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_59", "sample document": { "sample identifier": "472-0016 H2", "location identifier": "H2", @@ -2277,6 +2272,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2284,14 +2284,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -2304,6 +2298,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_60", "sample document": { "sample identifier": "472-0016 H3", "location identifier": "H3", @@ -2315,6 +2310,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2322,14 +2322,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -2342,6 +2336,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_61", "sample document": { "sample identifier": "472-0016 H4", "location identifier": "H4", @@ -2353,6 +2348,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2360,14 +2360,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -2380,6 +2374,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_62", "sample document": { "sample identifier": "472-0016 H5", "location identifier": "H5", @@ -2391,6 +2386,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2398,14 +2398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -2418,6 +2412,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_63", "sample document": { "sample identifier": "472-0016 H6", "location identifier": "H6", @@ -2429,6 +2424,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2436,14 +2436,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -2456,6 +2450,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_64", "sample document": { "sample identifier": "472-0016 I1", "location identifier": "I1", @@ -2467,6 +2462,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2474,14 +2474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -2494,6 +2488,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_65", "sample document": { "sample identifier": "472-0016 I2", "location identifier": "I2", @@ -2505,6 +2500,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2512,14 +2512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -2532,6 +2526,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_66", "sample document": { "sample identifier": "472-0016 I3", "location identifier": "I3", @@ -2543,6 +2538,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2550,14 +2550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -2570,6 +2564,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_67", "sample document": { "sample identifier": "472-0016 I4", "location identifier": "I4", @@ -2581,6 +2576,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2588,14 +2588,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -2608,6 +2602,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_68", "sample document": { "sample identifier": "472-0016 I5", "location identifier": "I5", @@ -2619,6 +2614,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2626,14 +2626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -2646,6 +2640,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_69", "sample document": { "sample identifier": "472-0016 I6", "location identifier": "I6", @@ -2657,6 +2652,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2664,14 +2664,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -2684,6 +2678,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_70", "sample document": { "sample identifier": "472-0016 I7", "location identifier": "I7", @@ -2695,6 +2690,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2702,14 +2702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -2722,6 +2716,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_71", "sample document": { "sample identifier": "472-0016 O1", "location identifier": "O1", @@ -2733,6 +2728,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2740,14 +2740,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -2760,6 +2754,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_72", "sample document": { "sample identifier": "472-0016 O2", "location identifier": "O2", @@ -2771,6 +2766,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2778,14 +2778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -2798,6 +2792,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_73", "sample document": { "sample identifier": "472-0016 O3", "location identifier": "O3", @@ -2809,6 +2804,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2816,14 +2816,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -2836,6 +2830,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_74", "sample document": { "sample identifier": "472-0016 O4", "location identifier": "O4", @@ -2847,6 +2842,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2854,14 +2854,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -2874,6 +2868,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_75", "sample document": { "sample identifier": "472-0016 O5", "location identifier": "O5", @@ -2885,6 +2880,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2892,14 +2892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -2912,6 +2906,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_76", "sample document": { "sample identifier": "472-0016 O6", "location identifier": "O6", @@ -2923,6 +2918,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2930,14 +2930,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -2950,6 +2944,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_77", "sample document": { "sample identifier": "472-0016 O7", "location identifier": "O7", @@ -2961,6 +2956,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -2968,14 +2968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -2988,6 +2982,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_78", "sample document": { "sample identifier": "472-0016 O18", "location identifier": "O18", @@ -2999,6 +2994,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3006,14 +3006,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -3026,6 +3020,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_79", "sample document": { "sample identifier": "472-0016 O19", "location identifier": "O19", @@ -3037,6 +3032,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3044,14 +3044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -3064,6 +3058,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_80", "sample document": { "sample identifier": "472-0016 O20", "location identifier": "O20", @@ -3075,6 +3070,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3082,14 +3082,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -3102,6 +3096,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_81", "sample document": { "sample identifier": "472-0016 O21", "location identifier": "O21", @@ -3113,6 +3108,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3120,14 +3120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -3140,6 +3134,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_82", "sample document": { "sample identifier": "472-0016 O22", "location identifier": "O22", @@ -3151,6 +3146,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3158,14 +3158,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -3178,6 +3172,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_83", "sample document": { "sample identifier": "472-0016 O23", "location identifier": "O23", @@ -3189,6 +3184,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3196,14 +3196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -3216,6 +3210,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_84", "sample document": { "sample identifier": "472-0016 O24", "location identifier": "O24", @@ -3227,6 +3222,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3234,14 +3234,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -3254,6 +3248,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_85", "sample document": { "sample identifier": "472-0016 P1", "location identifier": "P1", @@ -3265,6 +3260,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3272,14 +3272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -3292,6 +3286,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_86", "sample document": { "sample identifier": "472-0016 P2", "location identifier": "P2", @@ -3303,6 +3298,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3310,14 +3310,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -3330,6 +3324,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_87", "sample document": { "sample identifier": "472-0016 P3", "location identifier": "P3", @@ -3341,6 +3336,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3348,14 +3348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -3368,6 +3362,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_88", "sample document": { "sample identifier": "472-0016 P4", "location identifier": "P4", @@ -3379,6 +3374,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3386,14 +3386,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -3406,6 +3400,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_89", "sample document": { "sample identifier": "472-0016 P5", "location identifier": "P5", @@ -3417,6 +3412,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3424,14 +3424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -3444,6 +3438,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_90", "sample document": { "sample identifier": "472-0016 P6", "location identifier": "P6", @@ -3455,6 +3450,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3462,14 +3462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -3482,6 +3476,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_91", "sample document": { "sample identifier": "472-0016 P7", "location identifier": "P7", @@ -3493,6 +3488,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3500,14 +3500,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -3520,6 +3514,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_92", "sample document": { "sample identifier": "472-0016 P18", "location identifier": "P18", @@ -3531,6 +3526,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3538,14 +3538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -3558,6 +3552,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_93", "sample document": { "sample identifier": "472-0016 P19", "location identifier": "P19", @@ -3569,6 +3564,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3576,14 +3576,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -3596,6 +3590,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_94", "sample document": { "sample identifier": "472-0016 P20", "location identifier": "P20", @@ -3607,6 +3602,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3614,14 +3614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -3634,6 +3628,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_95", "sample document": { "sample identifier": "472-0016 P21", "location identifier": "P21", @@ -3645,6 +3640,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3652,14 +3652,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -3672,6 +3666,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_96", "sample document": { "sample identifier": "472-0016 P22", "location identifier": "P22", @@ -3683,6 +3678,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3690,14 +3690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -3710,6 +3704,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_97", "sample document": { "sample identifier": "472-0016 P23", "location identifier": "P23", @@ -3721,6 +3716,11 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, @@ -3728,14 +3728,8 @@ }, { "measurement aggregate document": { - "measurement time": "2016-03-03T16:54:03+00:00", - "plate well count": { - "value": 384, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "BMG_MARS_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -3748,6 +3742,7 @@ } ] }, + "measurement identifier": "BMG_MARS_TEST_ID_98", "sample document": { "sample identifier": "472-0016 P24", "location identifier": "P24", @@ -3759,25 +3754,30 @@ } } ], + "measurement time": "2016-03-03T16:54:03+00:00", + "plate well count": { + "value": 384, + "unit": "#" + }, "experiment type": "472 ABS 384 QC", "container type": "well plate" }, "analyst": "USER" } ], - "device system document": { - "device identifier": "N/A", - "model number": "N/A", - "product manufacturer": "BMG LABTECH" - }, "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "16-03-03 16-54-03 472 ABS 384 QC.json", "data system instance identifier": "N/A", "file name": "16-03-03 16-54-03 472 ABS 384 QC.csv", "UNC path": "C:\\Program Files (x86)\\BMG\\PHERAstar\\User\\Data", - "software name": "BMG MARS", "ASM converter name": "allotropy_bmg_mars", - "ASM converter version": "0.1.49" + "ASM converter version": "0.1.56", + "software name": "BMG MARS" + }, + "device system document": { + "device identifier": "N/A", + "model number": "N/A", + "product manufacturer": "BMG LABTECH" } } } diff --git a/tests/parsers/methodical_mind/testdata/methodical_test_1.json b/tests/parsers/methodical_mind/testdata/methodical_test_1.json index cdbd534d1..feb1bf540 100644 --- a/tests/parsers/methodical_mind/testdata/methodical_test_1.json +++ b/tests/parsers/methodical_mind/testdata/methodical_test_1.json @@ -6340,7 +6340,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "methodical_test_1.json", "data system instance identifier": "N/A", "file name": "22M0TALA85_2023-09-08-133933.txt", "UNC path": "Z:\\MSD-WP\\Export\\22M0TALA85_2023-09-08-133933.txt", diff --git a/tests/parsers/methodical_mind/testdata/methodical_test_2.json b/tests/parsers/methodical_mind/testdata/methodical_test_2.json index bdd70838c..322880dc5 100644 --- a/tests/parsers/methodical_mind/testdata/methodical_test_2.json +++ b/tests/parsers/methodical_mind/testdata/methodical_test_2.json @@ -31684,7 +31684,7 @@ } ], "data system document": { - "ASM file identifier": "N/A", + "ASM file identifier": "methodical_test_2.json", "data system instance identifier": "N/A", "file name": "PNECL_PANELZ20230815_N_01_2CM0BA4513_2023-08-15-172313.txt", "UNC path": "PNECL_PANELZ20230815_N_01_2CM0BA4513_2023-08-15-172313.txt", diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json index 35e00dfa4..cdfc4453d 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_absorbance_example01.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -28,6 +22,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A1", "location identifier": "A1", @@ -44,6 +39,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -51,14 +51,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -75,6 +69,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A2", "location identifier": "A2", @@ -91,6 +86,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -98,14 +98,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -122,6 +116,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A3", "location identifier": "A3", @@ -138,6 +133,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -145,14 +145,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -169,6 +163,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A4", "location identifier": "A4", @@ -185,6 +180,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -192,14 +192,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -216,6 +210,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A5", "location identifier": "A5", @@ -232,6 +227,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -239,14 +239,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -263,6 +257,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A6", "location identifier": "A6", @@ -279,6 +274,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -286,14 +286,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -310,6 +304,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A7", "location identifier": "A7", @@ -326,6 +321,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -333,14 +333,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -357,6 +351,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A8", "location identifier": "A8", @@ -373,6 +368,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -380,14 +380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -404,6 +398,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A9", "location identifier": "A9", @@ -420,6 +415,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -427,14 +427,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -451,6 +445,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A10", "location identifier": "A10", @@ -467,6 +462,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -474,14 +474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -498,6 +492,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A11", "location identifier": "A11", @@ -514,6 +509,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -521,14 +521,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -545,6 +539,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A12", "location identifier": "A12", @@ -561,6 +556,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -568,14 +568,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -592,6 +586,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A13", "location identifier": "A13", @@ -608,6 +603,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -615,14 +615,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -639,6 +633,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A14", "location identifier": "A14", @@ -655,6 +650,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -662,14 +662,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -686,6 +680,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A15", "location identifier": "A15", @@ -702,6 +697,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -709,14 +709,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -733,6 +727,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A16", "location identifier": "A16", @@ -749,6 +744,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -756,14 +756,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -780,6 +774,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A17", "location identifier": "A17", @@ -796,6 +791,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -803,14 +803,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -827,6 +821,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A18", "location identifier": "A18", @@ -843,6 +838,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -850,14 +850,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -874,6 +868,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A19", "location identifier": "A19", @@ -890,6 +885,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -897,14 +897,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -921,6 +915,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A20", "location identifier": "A20", @@ -937,6 +932,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -944,14 +944,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -968,6 +962,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A21", "location identifier": "A21", @@ -984,6 +979,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -991,14 +991,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -1015,6 +1009,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A22", "location identifier": "A22", @@ -1031,6 +1026,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1038,14 +1038,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -1062,6 +1056,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A23", "location identifier": "A23", @@ -1078,6 +1073,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1085,14 +1085,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -1109,6 +1103,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM A24", "location identifier": "A24", @@ -1125,6 +1120,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1132,14 +1132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -1156,6 +1150,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B1", "location identifier": "B1", @@ -1172,6 +1167,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1179,14 +1179,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -1203,6 +1197,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B2", "location identifier": "B2", @@ -1219,6 +1214,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1226,14 +1226,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1250,6 +1244,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B3", "location identifier": "B3", @@ -1266,6 +1261,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1273,14 +1273,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1297,6 +1291,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B4", "location identifier": "B4", @@ -1313,6 +1308,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1320,14 +1320,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1344,6 +1338,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B5", "location identifier": "B5", @@ -1360,6 +1355,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1367,14 +1367,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1391,6 +1385,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B6", "location identifier": "B6", @@ -1407,6 +1402,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1414,14 +1414,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1438,6 +1432,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B7", "location identifier": "B7", @@ -1454,6 +1449,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1461,14 +1461,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1485,6 +1479,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B8", "location identifier": "B8", @@ -1501,6 +1496,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1508,14 +1508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1532,6 +1526,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B9", "location identifier": "B9", @@ -1548,6 +1543,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1555,14 +1555,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1579,6 +1573,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B10", "location identifier": "B10", @@ -1595,6 +1590,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1602,14 +1602,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -1626,6 +1620,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B11", "location identifier": "B11", @@ -1642,6 +1637,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1649,14 +1649,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -1673,6 +1667,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B12", "location identifier": "B12", @@ -1689,6 +1684,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1696,14 +1696,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -1720,6 +1714,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B13", "location identifier": "B13", @@ -1736,6 +1731,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1743,14 +1743,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -1767,6 +1761,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B14", "location identifier": "B14", @@ -1783,6 +1778,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1790,14 +1790,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -1814,6 +1808,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B15", "location identifier": "B15", @@ -1830,6 +1825,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1837,14 +1837,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -1861,6 +1855,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B16", "location identifier": "B16", @@ -1877,6 +1872,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1884,14 +1884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -1908,6 +1902,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B17", "location identifier": "B17", @@ -1924,6 +1919,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1931,14 +1931,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -1955,6 +1949,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B18", "location identifier": "B18", @@ -1971,6 +1966,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -1978,14 +1978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -2002,6 +1996,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B19", "location identifier": "B19", @@ -2018,21 +2013,20 @@ } } ], - "analytical method identifier": "100175", + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, + "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" } }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -2049,6 +2043,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B20", "location identifier": "B20", @@ -2065,6 +2060,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2072,14 +2072,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -2096,6 +2090,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B21", "location identifier": "B21", @@ -2112,6 +2107,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2119,14 +2119,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -2143,6 +2137,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B22", "location identifier": "B22", @@ -2159,6 +2154,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2166,14 +2166,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -2190,6 +2184,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B23", "location identifier": "B23", @@ -2206,6 +2201,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2213,14 +2213,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -2237,6 +2231,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM B24", "location identifier": "B24", @@ -2253,6 +2248,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2260,14 +2260,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -2284,6 +2278,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C1", "location identifier": "C1", @@ -2300,6 +2295,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2307,14 +2307,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -2331,6 +2325,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C2", "location identifier": "C2", @@ -2347,6 +2342,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2354,14 +2354,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -2378,6 +2372,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C3", "location identifier": "C3", @@ -2394,6 +2389,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2401,14 +2401,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -2425,6 +2419,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C4", "location identifier": "C4", @@ -2441,6 +2436,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2448,14 +2448,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -2472,6 +2466,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C5", "location identifier": "C5", @@ -2488,6 +2483,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2495,14 +2495,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -2519,6 +2513,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C6", "location identifier": "C6", @@ -2535,6 +2530,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2542,14 +2542,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -2566,6 +2560,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C7", "location identifier": "C7", @@ -2582,6 +2577,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2589,14 +2589,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -2613,6 +2607,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C8", "location identifier": "C8", @@ -2629,6 +2624,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2636,14 +2636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -2660,6 +2654,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C9", "location identifier": "C9", @@ -2676,6 +2671,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2683,14 +2683,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -2707,6 +2701,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C10", "location identifier": "C10", @@ -2723,6 +2718,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2730,14 +2730,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -2754,6 +2748,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C11", "location identifier": "C11", @@ -2770,6 +2765,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2777,14 +2777,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -2801,6 +2795,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C12", "location identifier": "C12", @@ -2817,6 +2812,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2824,14 +2824,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -2848,6 +2842,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C13", "location identifier": "C13", @@ -2864,6 +2859,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2871,14 +2871,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -2895,6 +2889,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C14", "location identifier": "C14", @@ -2911,6 +2906,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2918,14 +2918,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -2942,6 +2936,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C15", "location identifier": "C15", @@ -2958,6 +2953,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -2965,14 +2965,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -2989,6 +2983,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C16", "location identifier": "C16", @@ -3005,6 +3000,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3012,14 +3012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -3036,6 +3030,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C17", "location identifier": "C17", @@ -3052,6 +3047,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3059,14 +3059,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -3083,6 +3077,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C18", "location identifier": "C18", @@ -3099,6 +3094,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3106,14 +3106,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -3130,6 +3124,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C19", "location identifier": "C19", @@ -3146,6 +3141,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3153,14 +3153,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -3177,6 +3171,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C20", "location identifier": "C20", @@ -3193,6 +3188,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3200,14 +3200,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -3224,6 +3218,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C21", "location identifier": "C21", @@ -3240,6 +3235,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3247,14 +3247,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -3271,6 +3265,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C22", "location identifier": "C22", @@ -3287,6 +3282,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3294,14 +3294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -3318,6 +3312,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C23", "location identifier": "C23", @@ -3334,6 +3329,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3341,14 +3341,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -3365,6 +3359,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM C24", "location identifier": "C24", @@ -3381,6 +3376,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3388,14 +3388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -3412,6 +3406,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D1", "location identifier": "D1", @@ -3428,6 +3423,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3435,14 +3435,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -3459,6 +3453,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D2", "location identifier": "D2", @@ -3475,6 +3470,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3482,14 +3482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -3506,6 +3500,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D3", "location identifier": "D3", @@ -3522,6 +3517,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3529,14 +3529,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -3553,6 +3547,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D4", "location identifier": "D4", @@ -3569,6 +3564,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3576,14 +3576,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -3600,6 +3594,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D5", "location identifier": "D5", @@ -3616,6 +3611,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3623,14 +3623,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -3647,6 +3641,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D6", "location identifier": "D6", @@ -3663,6 +3658,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3670,14 +3670,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -3694,6 +3688,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D7", "location identifier": "D7", @@ -3710,6 +3705,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3717,14 +3717,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -3741,6 +3735,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D8", "location identifier": "D8", @@ -3757,6 +3752,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3764,14 +3764,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -3788,6 +3782,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D9", "location identifier": "D9", @@ -3804,6 +3799,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3811,14 +3811,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -3835,6 +3829,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D10", "location identifier": "D10", @@ -3851,6 +3846,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3858,14 +3858,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -3882,6 +3876,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D11", "location identifier": "D11", @@ -3898,6 +3893,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3905,14 +3905,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -3929,6 +3923,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D12", "location identifier": "D12", @@ -3945,6 +3940,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3952,14 +3952,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -3976,6 +3970,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D13", "location identifier": "D13", @@ -3992,6 +3987,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -3999,14 +3999,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -4023,6 +4017,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D14", "location identifier": "D14", @@ -4039,6 +4034,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4046,14 +4046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -4070,6 +4064,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D15", "location identifier": "D15", @@ -4086,6 +4081,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4093,14 +4093,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -4117,6 +4111,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D16", "location identifier": "D16", @@ -4133,6 +4128,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4140,14 +4140,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -4164,6 +4158,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D17", "location identifier": "D17", @@ -4180,6 +4175,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4187,14 +4187,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -4211,6 +4205,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D18", "location identifier": "D18", @@ -4227,6 +4222,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4234,14 +4234,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -4258,6 +4252,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D19", "location identifier": "D19", @@ -4274,6 +4269,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4281,14 +4281,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -4305,6 +4299,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D20", "location identifier": "D20", @@ -4321,6 +4316,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4328,14 +4328,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -4352,6 +4346,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D21", "location identifier": "D21", @@ -4368,6 +4363,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4375,14 +4375,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -4399,6 +4393,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D22", "location identifier": "D22", @@ -4415,6 +4410,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4422,14 +4422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -4446,6 +4440,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D23", "location identifier": "D23", @@ -4462,6 +4457,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4469,14 +4469,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -4493,6 +4487,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM D24", "location identifier": "D24", @@ -4509,6 +4504,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4516,14 +4516,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -4540,6 +4534,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E1", "location identifier": "E1", @@ -4556,6 +4551,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4563,14 +4563,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -4587,6 +4581,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E2", "location identifier": "E2", @@ -4603,6 +4598,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4610,14 +4610,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -4634,6 +4628,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E3", "location identifier": "E3", @@ -4650,6 +4645,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4657,14 +4657,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "device control aggregate document": { "device control document": [ { @@ -4681,6 +4675,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E4", "location identifier": "E4", @@ -4697,6 +4692,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4704,14 +4704,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "device control aggregate document": { "device control document": [ { @@ -4728,6 +4722,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E5", "location identifier": "E5", @@ -4744,6 +4739,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4751,14 +4751,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "device control aggregate document": { "device control document": [ { @@ -4775,6 +4769,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E6", "location identifier": "E6", @@ -4791,6 +4786,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4798,14 +4798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "device control aggregate document": { "device control document": [ { @@ -4822,6 +4816,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E7", "location identifier": "E7", @@ -4838,6 +4833,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4845,14 +4845,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "device control aggregate document": { "device control document": [ { @@ -4869,6 +4863,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E8", "location identifier": "E8", @@ -4885,6 +4880,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4892,14 +4892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "device control aggregate document": { "device control document": [ { @@ -4916,6 +4910,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E9", "location identifier": "E9", @@ -4932,6 +4927,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4939,14 +4939,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "device control aggregate document": { "device control document": [ { @@ -4963,6 +4957,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E10", "location identifier": "E10", @@ -4979,6 +4974,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -4986,14 +4986,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "device control aggregate document": { "device control document": [ { @@ -5010,6 +5004,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E11", "location identifier": "E11", @@ -5026,6 +5021,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5033,14 +5033,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "device control aggregate document": { "device control document": [ { @@ -5057,6 +5051,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E12", "location identifier": "E12", @@ -5073,6 +5068,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5080,14 +5080,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "device control aggregate document": { "device control document": [ { @@ -5104,6 +5098,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E13", "location identifier": "E13", @@ -5120,6 +5115,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5127,14 +5127,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "device control aggregate document": { "device control document": [ { @@ -5151,6 +5145,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E14", "location identifier": "E14", @@ -5167,6 +5162,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5174,14 +5174,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "device control aggregate document": { "device control document": [ { @@ -5198,6 +5192,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E15", "location identifier": "E15", @@ -5214,6 +5209,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5221,14 +5221,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "device control aggregate document": { "device control document": [ { @@ -5245,6 +5239,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E16", "location identifier": "E16", @@ -5261,6 +5256,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5268,14 +5268,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "device control aggregate document": { "device control document": [ { @@ -5292,6 +5286,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E17", "location identifier": "E17", @@ -5308,6 +5303,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5315,14 +5315,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "device control aggregate document": { "device control document": [ { @@ -5339,6 +5333,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E18", "location identifier": "E18", @@ -5355,6 +5350,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5362,14 +5362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "device control aggregate document": { "device control document": [ { @@ -5386,6 +5380,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E19", "location identifier": "E19", @@ -5402,6 +5397,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5409,14 +5409,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "device control aggregate document": { "device control document": [ { @@ -5433,6 +5427,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E20", "location identifier": "E20", @@ -5449,6 +5444,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5456,14 +5456,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "device control aggregate document": { "device control document": [ { @@ -5480,6 +5474,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E21", "location identifier": "E21", @@ -5496,6 +5491,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5503,14 +5503,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "device control aggregate document": { "device control document": [ { @@ -5527,6 +5521,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E22", "location identifier": "E22", @@ -5543,6 +5538,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5550,14 +5550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "device control aggregate document": { "device control document": [ { @@ -5574,6 +5568,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E23", "location identifier": "E23", @@ -5590,6 +5585,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5597,14 +5597,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "device control aggregate document": { "device control document": [ { @@ -5621,6 +5615,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM E24", "location identifier": "E24", @@ -5637,6 +5632,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5644,14 +5644,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "device control aggregate document": { "device control document": [ { @@ -5668,6 +5662,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F1", "location identifier": "F1", @@ -5684,6 +5679,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5691,14 +5691,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "device control aggregate document": { "device control document": [ { @@ -5715,6 +5709,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F2", "location identifier": "F2", @@ -5731,6 +5726,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5738,14 +5738,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "device control aggregate document": { "device control document": [ { @@ -5762,6 +5756,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F3", "location identifier": "F3", @@ -5778,6 +5773,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5785,14 +5785,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "device control aggregate document": { "device control document": [ { @@ -5809,6 +5803,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F4", "location identifier": "F4", @@ -5825,6 +5820,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5832,14 +5832,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "device control aggregate document": { "device control document": [ { @@ -5856,6 +5850,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F5", "location identifier": "F5", @@ -5872,6 +5867,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5879,14 +5879,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "device control aggregate document": { "device control document": [ { @@ -5903,6 +5897,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F6", "location identifier": "F6", @@ -5919,6 +5914,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5926,14 +5926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "device control aggregate document": { "device control document": [ { @@ -5950,6 +5944,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F7", "location identifier": "F7", @@ -5966,6 +5961,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -5973,14 +5973,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "device control aggregate document": { "device control document": [ { @@ -5997,6 +5991,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F8", "location identifier": "F8", @@ -6013,21 +6008,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "device control aggregate document": { "device control document": [ { @@ -6044,6 +6038,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F9", "location identifier": "F9", @@ -6060,6 +6055,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6067,14 +6067,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "device control aggregate document": { "device control document": [ { @@ -6091,6 +6085,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F10", "location identifier": "F10", @@ -6107,6 +6102,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6114,14 +6114,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "device control aggregate document": { "device control document": [ { @@ -6138,6 +6132,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F11", "location identifier": "F11", @@ -6154,6 +6149,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6161,14 +6161,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "device control aggregate document": { "device control document": [ { @@ -6185,6 +6179,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F12", "location identifier": "F12", @@ -6201,6 +6196,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6208,14 +6208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "device control aggregate document": { "device control document": [ { @@ -6232,6 +6226,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F13", "location identifier": "F13", @@ -6248,6 +6243,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6255,14 +6255,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "device control aggregate document": { "device control document": [ { @@ -6279,6 +6273,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F14", "location identifier": "F14", @@ -6295,6 +6290,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6302,14 +6302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "device control aggregate document": { "device control document": [ { @@ -6326,6 +6320,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F15", "location identifier": "F15", @@ -6342,6 +6337,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6349,14 +6349,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "device control aggregate document": { "device control document": [ { @@ -6373,6 +6367,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F16", "location identifier": "F16", @@ -6389,6 +6384,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6396,14 +6396,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "device control aggregate document": { "device control document": [ { @@ -6420,6 +6414,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F17", "location identifier": "F17", @@ -6436,6 +6431,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6443,14 +6443,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "device control aggregate document": { "device control document": [ { @@ -6467,6 +6461,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F18", "location identifier": "F18", @@ -6483,6 +6478,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6490,14 +6490,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "device control aggregate document": { "device control document": [ { @@ -6514,6 +6508,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F19", "location identifier": "F19", @@ -6530,6 +6525,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6537,14 +6537,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "device control aggregate document": { "device control document": [ { @@ -6561,6 +6555,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F20", "location identifier": "F20", @@ -6577,6 +6572,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6584,14 +6584,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "device control aggregate document": { "device control document": [ { @@ -6608,6 +6602,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F21", "location identifier": "F21", @@ -6624,6 +6619,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6631,14 +6631,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "device control aggregate document": { "device control document": [ { @@ -6655,6 +6649,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F22", "location identifier": "F22", @@ -6671,6 +6666,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6678,14 +6678,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "device control aggregate document": { "device control document": [ { @@ -6702,6 +6696,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F23", "location identifier": "F23", @@ -6718,6 +6713,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6725,14 +6725,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "device control aggregate document": { "device control document": [ { @@ -6749,6 +6743,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM F24", "location identifier": "F24", @@ -6765,6 +6760,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6772,14 +6772,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "device control aggregate document": { "device control document": [ { @@ -6796,6 +6790,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G1", "location identifier": "G1", @@ -6812,6 +6807,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6819,14 +6819,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "device control aggregate document": { "device control document": [ { @@ -6843,6 +6837,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G2", "location identifier": "G2", @@ -6859,6 +6854,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6866,14 +6866,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "device control aggregate document": { "device control document": [ { @@ -6890,6 +6884,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G3", "location identifier": "G3", @@ -6906,6 +6901,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6913,14 +6913,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "device control aggregate document": { "device control document": [ { @@ -6937,6 +6931,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G4", "location identifier": "G4", @@ -6953,6 +6948,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -6960,14 +6960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "device control aggregate document": { "device control document": [ { @@ -6984,6 +6978,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G5", "location identifier": "G5", @@ -7000,6 +6995,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7007,14 +7007,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "device control aggregate document": { "device control document": [ { @@ -7031,6 +7025,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G6", "location identifier": "G6", @@ -7047,6 +7042,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7054,14 +7054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "device control aggregate document": { "device control document": [ { @@ -7078,6 +7072,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G7", "location identifier": "G7", @@ -7094,6 +7089,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7101,14 +7101,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "device control aggregate document": { "device control document": [ { @@ -7125,6 +7119,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G8", "location identifier": "G8", @@ -7141,6 +7136,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7148,14 +7148,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "device control aggregate document": { "device control document": [ { @@ -7172,6 +7166,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G9", "location identifier": "G9", @@ -7188,6 +7183,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7195,14 +7195,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "device control aggregate document": { "device control document": [ { @@ -7219,6 +7213,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G10", "location identifier": "G10", @@ -7235,6 +7230,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7242,14 +7242,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "device control aggregate document": { "device control document": [ { @@ -7266,6 +7260,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G11", "location identifier": "G11", @@ -7282,6 +7277,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7289,14 +7289,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "device control aggregate document": { "device control document": [ { @@ -7313,6 +7307,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G12", "location identifier": "G12", @@ -7329,6 +7324,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7336,14 +7336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "device control aggregate document": { "device control document": [ { @@ -7360,6 +7354,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G13", "location identifier": "G13", @@ -7376,6 +7371,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7383,14 +7383,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "device control aggregate document": { "device control document": [ { @@ -7407,6 +7401,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G14", "location identifier": "G14", @@ -7423,6 +7418,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7430,14 +7430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "device control aggregate document": { "device control document": [ { @@ -7454,6 +7448,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G15", "location identifier": "G15", @@ -7470,6 +7465,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7477,14 +7477,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "device control aggregate document": { "device control document": [ { @@ -7501,6 +7495,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G16", "location identifier": "G16", @@ -7517,6 +7512,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7524,14 +7524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "device control aggregate document": { "device control document": [ { @@ -7548,6 +7542,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G17", "location identifier": "G17", @@ -7564,6 +7559,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7571,14 +7571,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "device control aggregate document": { "device control document": [ { @@ -7595,6 +7589,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G18", "location identifier": "G18", @@ -7611,6 +7606,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7618,14 +7618,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "device control aggregate document": { "device control document": [ { @@ -7642,6 +7636,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G19", "location identifier": "G19", @@ -7658,6 +7653,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7665,14 +7665,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "device control aggregate document": { "device control document": [ { @@ -7689,6 +7683,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G20", "location identifier": "G20", @@ -7705,6 +7700,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7712,14 +7712,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "device control aggregate document": { "device control document": [ { @@ -7736,6 +7730,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G21", "location identifier": "G21", @@ -7752,6 +7747,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7759,14 +7759,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "device control aggregate document": { "device control document": [ { @@ -7783,6 +7777,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G22", "location identifier": "G22", @@ -7799,6 +7794,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7806,14 +7806,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "device control aggregate document": { "device control document": [ { @@ -7830,6 +7824,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G23", "location identifier": "G23", @@ -7846,6 +7841,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7853,14 +7853,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "device control aggregate document": { "device control document": [ { @@ -7877,6 +7871,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM G24", "location identifier": "G24", @@ -7893,6 +7888,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7900,14 +7900,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "device control aggregate document": { "device control document": [ { @@ -7924,6 +7918,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H1", "location identifier": "H1", @@ -7940,6 +7935,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7947,14 +7947,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "device control aggregate document": { "device control document": [ { @@ -7971,6 +7965,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H2", "location identifier": "H2", @@ -7987,6 +7982,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -7994,14 +7994,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "device control aggregate document": { "device control document": [ { @@ -8018,6 +8012,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H3", "location identifier": "H3", @@ -8034,6 +8029,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8041,14 +8041,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "device control aggregate document": { "device control document": [ { @@ -8065,6 +8059,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H4", "location identifier": "H4", @@ -8081,6 +8076,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8088,14 +8088,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "device control aggregate document": { "device control document": [ { @@ -8112,6 +8106,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H5", "location identifier": "H5", @@ -8128,6 +8123,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8135,14 +8135,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "device control aggregate document": { "device control document": [ { @@ -8159,6 +8153,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H6", "location identifier": "H6", @@ -8175,6 +8170,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8182,14 +8182,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "device control aggregate document": { "device control document": [ { @@ -8206,6 +8200,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H7", "location identifier": "H7", @@ -8222,6 +8217,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8229,14 +8229,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "device control aggregate document": { "device control document": [ { @@ -8253,6 +8247,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H8", "location identifier": "H8", @@ -8269,6 +8264,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8276,14 +8276,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "device control aggregate document": { "device control document": [ { @@ -8300,6 +8294,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H9", "location identifier": "H9", @@ -8316,6 +8311,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8323,14 +8323,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "device control aggregate document": { "device control document": [ { @@ -8347,6 +8341,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H10", "location identifier": "H10", @@ -8363,6 +8358,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8370,14 +8370,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "device control aggregate document": { "device control document": [ { @@ -8394,6 +8388,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H11", "location identifier": "H11", @@ -8410,6 +8405,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8417,14 +8417,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "device control aggregate document": { "device control document": [ { @@ -8441,6 +8435,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H12", "location identifier": "H12", @@ -8457,6 +8452,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8464,14 +8464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "device control aggregate document": { "device control document": [ { @@ -8488,6 +8482,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H13", "location identifier": "H13", @@ -8504,6 +8499,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8511,14 +8511,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "device control aggregate document": { "device control document": [ { @@ -8535,6 +8529,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H14", "location identifier": "H14", @@ -8551,6 +8546,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8558,14 +8558,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "device control aggregate document": { "device control document": [ { @@ -8582,6 +8576,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H15", "location identifier": "H15", @@ -8598,6 +8593,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8605,14 +8605,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "device control aggregate document": { "device control document": [ { @@ -8629,6 +8623,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H16", "location identifier": "H16", @@ -8645,6 +8640,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8652,14 +8652,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "device control aggregate document": { "device control document": [ { @@ -8676,6 +8670,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H17", "location identifier": "H17", @@ -8692,6 +8687,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8699,14 +8699,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "device control aggregate document": { "device control document": [ { @@ -8723,6 +8717,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H18", "location identifier": "H18", @@ -8739,6 +8734,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8746,14 +8746,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "device control aggregate document": { "device control document": [ { @@ -8770,6 +8764,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H19", "location identifier": "H19", @@ -8786,6 +8781,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8793,14 +8793,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "device control aggregate document": { "device control document": [ { @@ -8817,6 +8811,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H20", "location identifier": "H20", @@ -8833,6 +8828,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8840,14 +8840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "device control aggregate document": { "device control document": [ { @@ -8864,6 +8858,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H21", "location identifier": "H21", @@ -8880,6 +8875,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8887,14 +8887,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "device control aggregate document": { "device control document": [ { @@ -8911,6 +8905,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H22", "location identifier": "H22", @@ -8927,6 +8922,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8934,14 +8934,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "device control aggregate document": { "device control document": [ { @@ -8958,6 +8952,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H23", "location identifier": "H23", @@ -8974,6 +8969,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -8981,14 +8981,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "device control aggregate document": { "device control document": [ { @@ -9005,6 +8999,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM H24", "location identifier": "H24", @@ -9021,6 +9016,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9028,14 +9028,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "device control aggregate document": { "device control document": [ { @@ -9052,6 +9046,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I1", "location identifier": "I1", @@ -9068,6 +9063,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9075,14 +9075,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "device control aggregate document": { "device control document": [ { @@ -9099,6 +9093,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I2", "location identifier": "I2", @@ -9115,6 +9110,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9122,14 +9122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "device control aggregate document": { "device control document": [ { @@ -9146,6 +9140,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I3", "location identifier": "I3", @@ -9162,6 +9157,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9169,14 +9169,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "device control aggregate document": { "device control document": [ { @@ -9193,6 +9187,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I4", "location identifier": "I4", @@ -9209,6 +9204,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9216,14 +9216,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "device control aggregate document": { "device control document": [ { @@ -9240,6 +9234,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I5", "location identifier": "I5", @@ -9256,6 +9251,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9263,14 +9263,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "device control aggregate document": { "device control document": [ { @@ -9287,6 +9281,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I6", "location identifier": "I6", @@ -9303,6 +9298,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9310,14 +9310,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "device control aggregate document": { "device control document": [ { @@ -9334,6 +9328,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I7", "location identifier": "I7", @@ -9350,6 +9345,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9357,14 +9357,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "device control aggregate document": { "device control document": [ { @@ -9381,6 +9375,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I8", "location identifier": "I8", @@ -9397,6 +9392,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9404,14 +9404,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "device control aggregate document": { "device control document": [ { @@ -9428,6 +9422,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I9", "location identifier": "I9", @@ -9444,6 +9439,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9451,14 +9451,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "device control aggregate document": { "device control document": [ { @@ -9475,6 +9469,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I10", "location identifier": "I10", @@ -9491,6 +9486,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9498,14 +9498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "device control aggregate document": { "device control document": [ { @@ -9522,6 +9516,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I11", "location identifier": "I11", @@ -9538,6 +9533,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9545,14 +9545,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "device control aggregate document": { "device control document": [ { @@ -9569,6 +9563,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I12", "location identifier": "I12", @@ -9585,6 +9580,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9592,14 +9592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "device control aggregate document": { "device control document": [ { @@ -9616,6 +9610,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I13", "location identifier": "I13", @@ -9632,6 +9627,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9639,14 +9639,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "device control aggregate document": { "device control document": [ { @@ -9663,6 +9657,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I14", "location identifier": "I14", @@ -9679,6 +9674,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9686,14 +9686,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "device control aggregate document": { "device control document": [ { @@ -9710,6 +9704,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I15", "location identifier": "I15", @@ -9726,6 +9721,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9733,14 +9733,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "device control aggregate document": { "device control document": [ { @@ -9757,6 +9751,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I16", "location identifier": "I16", @@ -9773,6 +9768,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9780,14 +9780,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "device control aggregate document": { "device control document": [ { @@ -9804,6 +9798,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I17", "location identifier": "I17", @@ -9820,6 +9815,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9827,14 +9827,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "device control aggregate document": { "device control document": [ { @@ -9851,6 +9845,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I18", "location identifier": "I18", @@ -9867,6 +9862,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9874,14 +9874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "device control aggregate document": { "device control document": [ { @@ -9898,6 +9892,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I19", "location identifier": "I19", @@ -9914,6 +9909,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9921,14 +9921,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "device control aggregate document": { "device control document": [ { @@ -9945,6 +9939,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I20", "location identifier": "I20", @@ -9961,6 +9956,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -9968,14 +9968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "device control aggregate document": { "device control document": [ { @@ -9992,6 +9986,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I21", "location identifier": "I21", @@ -10008,6 +10003,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10015,14 +10015,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "device control aggregate document": { "device control document": [ { @@ -10039,6 +10033,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I22", "location identifier": "I22", @@ -10055,6 +10050,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10062,14 +10062,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "device control aggregate document": { "device control document": [ { @@ -10086,6 +10080,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I23", "location identifier": "I23", @@ -10102,6 +10097,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10109,14 +10109,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "device control aggregate document": { "device control document": [ { @@ -10133,6 +10127,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM I24", "location identifier": "I24", @@ -10149,6 +10144,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10156,14 +10156,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "device control aggregate document": { "device control document": [ { @@ -10180,6 +10174,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J1", "location identifier": "J1", @@ -10196,6 +10191,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10203,14 +10203,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "device control aggregate document": { "device control document": [ { @@ -10227,6 +10221,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J2", "location identifier": "J2", @@ -10243,6 +10238,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10250,14 +10250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "device control aggregate document": { "device control document": [ { @@ -10274,6 +10268,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J3", "location identifier": "J3", @@ -10290,6 +10285,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10297,14 +10297,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "device control aggregate document": { "device control document": [ { @@ -10321,6 +10315,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J4", "location identifier": "J4", @@ -10337,6 +10332,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10344,14 +10344,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "device control aggregate document": { "device control document": [ { @@ -10368,6 +10362,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J5", "location identifier": "J5", @@ -10384,6 +10379,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10391,14 +10391,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "device control aggregate document": { "device control document": [ { @@ -10415,6 +10409,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J6", "location identifier": "J6", @@ -10431,6 +10426,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10438,14 +10438,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "device control aggregate document": { "device control document": [ { @@ -10462,6 +10456,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J7", "location identifier": "J7", @@ -10478,6 +10473,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10485,14 +10485,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "device control aggregate document": { "device control document": [ { @@ -10509,6 +10503,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J8", "location identifier": "J8", @@ -10525,6 +10520,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10532,14 +10532,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "device control aggregate document": { "device control document": [ { @@ -10556,6 +10550,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J9", "location identifier": "J9", @@ -10572,6 +10567,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10579,14 +10579,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "device control aggregate document": { "device control document": [ { @@ -10603,6 +10597,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J10", "location identifier": "J10", @@ -10619,6 +10614,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10626,14 +10626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "device control aggregate document": { "device control document": [ { @@ -10650,6 +10644,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J11", "location identifier": "J11", @@ -10666,6 +10661,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10673,14 +10673,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "device control aggregate document": { "device control document": [ { @@ -10697,6 +10691,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J12", "location identifier": "J12", @@ -10713,21 +10708,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "device control aggregate document": { "device control document": [ { @@ -10744,6 +10738,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J13", "location identifier": "J13", @@ -10760,6 +10755,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10767,14 +10767,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "device control aggregate document": { "device control document": [ { @@ -10791,6 +10785,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J14", "location identifier": "J14", @@ -10807,6 +10802,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10814,14 +10814,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "device control aggregate document": { "device control document": [ { @@ -10838,6 +10832,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J15", "location identifier": "J15", @@ -10854,6 +10849,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10861,14 +10861,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "device control aggregate document": { "device control document": [ { @@ -10885,6 +10879,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J16", "location identifier": "J16", @@ -10901,6 +10896,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10908,14 +10908,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "device control aggregate document": { "device control document": [ { @@ -10932,6 +10926,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J17", "location identifier": "J17", @@ -10948,6 +10943,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -10955,14 +10955,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "device control aggregate document": { "device control document": [ { @@ -10979,6 +10973,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J18", "location identifier": "J18", @@ -10995,6 +10990,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11002,14 +11002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "device control aggregate document": { "device control document": [ { @@ -11026,6 +11020,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J19", "location identifier": "J19", @@ -11042,6 +11037,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11049,14 +11049,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "device control aggregate document": { "device control document": [ { @@ -11073,6 +11067,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J20", "location identifier": "J20", @@ -11089,6 +11084,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11096,14 +11096,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "device control aggregate document": { "device control document": [ { @@ -11120,6 +11114,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J21", "location identifier": "J21", @@ -11136,6 +11131,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11143,14 +11143,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "device control aggregate document": { "device control document": [ { @@ -11167,6 +11161,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J22", "location identifier": "J22", @@ -11183,6 +11178,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11190,14 +11190,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "device control aggregate document": { "device control document": [ { @@ -11214,6 +11208,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J23", "location identifier": "J23", @@ -11230,6 +11225,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11237,14 +11237,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "device control aggregate document": { "device control document": [ { @@ -11261,6 +11255,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM J24", "location identifier": "J24", @@ -11277,6 +11272,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11284,14 +11284,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "device control aggregate document": { "device control document": [ { @@ -11308,6 +11302,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K1", "location identifier": "K1", @@ -11324,6 +11319,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11331,14 +11331,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "device control aggregate document": { "device control document": [ { @@ -11355,6 +11349,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K2", "location identifier": "K2", @@ -11371,6 +11366,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11378,14 +11378,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "device control aggregate document": { "device control document": [ { @@ -11402,6 +11396,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K3", "location identifier": "K3", @@ -11418,6 +11413,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11425,14 +11425,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "device control aggregate document": { "device control document": [ { @@ -11449,6 +11443,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K4", "location identifier": "K4", @@ -11465,6 +11460,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11472,14 +11472,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "device control aggregate document": { "device control document": [ { @@ -11496,6 +11490,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K5", "location identifier": "K5", @@ -11512,6 +11507,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11519,14 +11519,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "device control aggregate document": { "device control document": [ { @@ -11543,6 +11537,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K6", "location identifier": "K6", @@ -11559,6 +11554,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11566,14 +11566,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "device control aggregate document": { "device control document": [ { @@ -11590,6 +11584,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K7", "location identifier": "K7", @@ -11606,6 +11601,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11613,14 +11613,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "device control aggregate document": { "device control document": [ { @@ -11637,6 +11631,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K8", "location identifier": "K8", @@ -11653,6 +11648,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11660,14 +11660,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "device control aggregate document": { "device control document": [ { @@ -11684,6 +11678,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K9", "location identifier": "K9", @@ -11700,6 +11695,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11707,14 +11707,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "device control aggregate document": { "device control document": [ { @@ -11731,6 +11725,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K10", "location identifier": "K10", @@ -11747,6 +11742,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11754,14 +11754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "device control aggregate document": { "device control document": [ { @@ -11778,6 +11772,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K11", "location identifier": "K11", @@ -11794,6 +11789,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11801,14 +11801,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "device control aggregate document": { "device control document": [ { @@ -11825,6 +11819,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K12", "location identifier": "K12", @@ -11841,6 +11836,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11848,14 +11848,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "device control aggregate document": { "device control document": [ { @@ -11872,6 +11866,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K13", "location identifier": "K13", @@ -11888,6 +11883,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11895,14 +11895,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "device control aggregate document": { "device control document": [ { @@ -11919,6 +11913,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K14", "location identifier": "K14", @@ -11935,6 +11930,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11942,14 +11942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "device control aggregate document": { "device control document": [ { @@ -11966,6 +11960,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K15", "location identifier": "K15", @@ -11982,6 +11977,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -11989,14 +11989,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "device control aggregate document": { "device control document": [ { @@ -12013,6 +12007,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K16", "location identifier": "K16", @@ -12029,6 +12024,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12036,14 +12036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "device control aggregate document": { "device control document": [ { @@ -12060,6 +12054,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K17", "location identifier": "K17", @@ -12076,6 +12071,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12083,14 +12083,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "device control aggregate document": { "device control document": [ { @@ -12107,6 +12101,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K18", "location identifier": "K18", @@ -12123,6 +12118,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12130,14 +12130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "device control aggregate document": { "device control document": [ { @@ -12154,6 +12148,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K19", "location identifier": "K19", @@ -12170,6 +12165,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12177,14 +12177,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "device control aggregate document": { "device control document": [ { @@ -12201,6 +12195,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K20", "location identifier": "K20", @@ -12217,6 +12212,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12224,14 +12224,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "device control aggregate document": { "device control document": [ { @@ -12248,6 +12242,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K21", "location identifier": "K21", @@ -12264,6 +12259,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12271,14 +12271,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "device control aggregate document": { "device control document": [ { @@ -12295,6 +12289,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K22", "location identifier": "K22", @@ -12311,6 +12306,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12318,14 +12318,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "device control aggregate document": { "device control document": [ { @@ -12342,6 +12336,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K23", "location identifier": "K23", @@ -12358,6 +12353,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12365,14 +12365,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "device control aggregate document": { "device control document": [ { @@ -12389,6 +12383,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM K24", "location identifier": "K24", @@ -12405,6 +12400,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12412,14 +12412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "device control aggregate document": { "device control document": [ { @@ -12436,6 +12430,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L1", "location identifier": "L1", @@ -12452,6 +12447,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12459,14 +12459,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "device control aggregate document": { "device control document": [ { @@ -12483,6 +12477,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L2", "location identifier": "L2", @@ -12499,6 +12494,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12506,14 +12506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "device control aggregate document": { "device control document": [ { @@ -12530,6 +12524,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L3", "location identifier": "L3", @@ -12546,6 +12541,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12553,14 +12553,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "device control aggregate document": { "device control document": [ { @@ -12577,6 +12571,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L4", "location identifier": "L4", @@ -12593,6 +12588,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12600,14 +12600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "device control aggregate document": { "device control document": [ { @@ -12624,6 +12618,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L5", "location identifier": "L5", @@ -12640,6 +12635,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12647,14 +12647,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "device control aggregate document": { "device control document": [ { @@ -12671,6 +12665,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L6", "location identifier": "L6", @@ -12687,6 +12682,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12694,14 +12694,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "device control aggregate document": { "device control document": [ { @@ -12718,6 +12712,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L7", "location identifier": "L7", @@ -12734,6 +12729,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12741,14 +12741,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "device control aggregate document": { "device control document": [ { @@ -12765,6 +12759,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L8", "location identifier": "L8", @@ -12781,6 +12776,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12788,14 +12788,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "device control aggregate document": { "device control document": [ { @@ -12812,6 +12806,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L9", "location identifier": "L9", @@ -12828,6 +12823,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12835,14 +12835,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "device control aggregate document": { "device control document": [ { @@ -12859,6 +12853,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L10", "location identifier": "L10", @@ -12875,6 +12870,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12882,14 +12882,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "device control aggregate document": { "device control document": [ { @@ -12906,6 +12900,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L11", "location identifier": "L11", @@ -12922,6 +12917,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12929,14 +12929,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "device control aggregate document": { "device control document": [ { @@ -12953,6 +12947,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L12", "location identifier": "L12", @@ -12969,6 +12964,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -12976,14 +12976,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "device control aggregate document": { "device control document": [ { @@ -13000,6 +12994,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L13", "location identifier": "L13", @@ -13016,6 +13011,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13023,14 +13023,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "device control aggregate document": { "device control document": [ { @@ -13047,6 +13041,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L14", "location identifier": "L14", @@ -13063,6 +13058,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13070,14 +13070,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "device control aggregate document": { "device control document": [ { @@ -13094,6 +13088,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L15", "location identifier": "L15", @@ -13110,6 +13105,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13117,14 +13117,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "device control aggregate document": { "device control document": [ { @@ -13141,6 +13135,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L16", "location identifier": "L16", @@ -13157,6 +13152,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13164,14 +13164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "device control aggregate document": { "device control document": [ { @@ -13188,6 +13182,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L17", "location identifier": "L17", @@ -13204,6 +13199,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13211,14 +13211,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "device control aggregate document": { "device control document": [ { @@ -13235,6 +13229,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L18", "location identifier": "L18", @@ -13251,6 +13246,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13258,14 +13258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "device control aggregate document": { "device control document": [ { @@ -13282,6 +13276,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L19", "location identifier": "L19", @@ -13298,6 +13293,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13305,14 +13305,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "device control aggregate document": { "device control document": [ { @@ -13329,6 +13323,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L20", "location identifier": "L20", @@ -13345,6 +13340,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13352,14 +13352,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "device control aggregate document": { "device control document": [ { @@ -13376,6 +13370,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L21", "location identifier": "L21", @@ -13392,6 +13387,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13399,14 +13399,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "device control aggregate document": { "device control document": [ { @@ -13423,6 +13417,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L22", "location identifier": "L22", @@ -13439,6 +13434,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13446,14 +13446,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "device control aggregate document": { "device control document": [ { @@ -13470,6 +13464,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L23", "location identifier": "L23", @@ -13486,6 +13481,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13493,14 +13493,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "device control aggregate document": { "device control document": [ { @@ -13517,6 +13511,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM L24", "location identifier": "L24", @@ -13533,6 +13528,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13540,14 +13540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "device control aggregate document": { "device control document": [ { @@ -13564,6 +13558,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M1", "location identifier": "M1", @@ -13580,6 +13575,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13587,14 +13587,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "device control aggregate document": { "device control document": [ { @@ -13611,6 +13605,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M2", "location identifier": "M2", @@ -13627,6 +13622,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13634,14 +13634,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "device control aggregate document": { "device control document": [ { @@ -13658,6 +13652,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M3", "location identifier": "M3", @@ -13674,6 +13669,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13681,14 +13681,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "device control aggregate document": { "device control document": [ { @@ -13705,6 +13699,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M4", "location identifier": "M4", @@ -13721,6 +13716,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13728,14 +13728,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "device control aggregate document": { "device control document": [ { @@ -13752,6 +13746,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M5", "location identifier": "M5", @@ -13768,6 +13763,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13775,14 +13775,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "device control aggregate document": { "device control document": [ { @@ -13799,6 +13793,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M6", "location identifier": "M6", @@ -13815,6 +13810,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13822,14 +13822,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "device control aggregate document": { "device control document": [ { @@ -13846,6 +13840,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M7", "location identifier": "M7", @@ -13862,6 +13857,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13869,14 +13869,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "device control aggregate document": { "device control document": [ { @@ -13893,6 +13887,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M8", "location identifier": "M8", @@ -13909,6 +13904,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13916,14 +13916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "device control aggregate document": { "device control document": [ { @@ -13940,6 +13934,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M9", "location identifier": "M9", @@ -13956,6 +13951,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -13963,14 +13963,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "device control aggregate document": { "device control document": [ { @@ -13987,6 +13981,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M10", "location identifier": "M10", @@ -14003,6 +13998,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14010,14 +14010,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "device control aggregate document": { "device control document": [ { @@ -14034,6 +14028,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M11", "location identifier": "M11", @@ -14050,6 +14045,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14057,14 +14057,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "device control aggregate document": { "device control document": [ { @@ -14081,6 +14075,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M12", "location identifier": "M12", @@ -14097,6 +14092,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14104,14 +14104,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "device control aggregate document": { "device control document": [ { @@ -14128,6 +14122,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M13", "location identifier": "M13", @@ -14144,6 +14139,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14151,14 +14151,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "device control aggregate document": { "device control document": [ { @@ -14175,6 +14169,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M14", "location identifier": "M14", @@ -14191,6 +14186,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14198,14 +14198,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "device control aggregate document": { "device control document": [ { @@ -14222,6 +14216,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M15", "location identifier": "M15", @@ -14238,6 +14233,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14245,14 +14245,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "device control aggregate document": { "device control document": [ { @@ -14269,6 +14263,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M16", "location identifier": "M16", @@ -14285,6 +14280,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14292,14 +14292,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "device control aggregate document": { "device control document": [ { @@ -14316,6 +14310,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M17", "location identifier": "M17", @@ -14332,6 +14327,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14339,14 +14339,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "device control aggregate document": { "device control document": [ { @@ -14363,6 +14357,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M18", "location identifier": "M18", @@ -14379,6 +14374,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14386,14 +14386,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "device control aggregate document": { "device control document": [ { @@ -14410,6 +14404,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M19", "location identifier": "M19", @@ -14426,6 +14421,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14433,14 +14433,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "device control aggregate document": { "device control document": [ { @@ -14457,6 +14451,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M20", "location identifier": "M20", @@ -14473,6 +14468,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14480,14 +14480,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "device control aggregate document": { "device control document": [ { @@ -14504,6 +14498,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M21", "location identifier": "M21", @@ -14520,6 +14515,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14527,14 +14527,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "device control aggregate document": { "device control document": [ { @@ -14551,6 +14545,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M22", "location identifier": "M22", @@ -14567,6 +14562,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14574,14 +14574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "device control aggregate document": { "device control document": [ { @@ -14598,6 +14592,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M23", "location identifier": "M23", @@ -14614,6 +14609,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14621,14 +14621,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "device control aggregate document": { "device control document": [ { @@ -14645,6 +14639,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM M24", "location identifier": "M24", @@ -14661,6 +14656,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14668,14 +14668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "device control aggregate document": { "device control document": [ { @@ -14692,6 +14686,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N1", "location identifier": "N1", @@ -14708,21 +14703,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "device control aggregate document": { "device control document": [ { @@ -14739,6 +14733,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N2", "location identifier": "N2", @@ -14755,6 +14750,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14762,14 +14762,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "device control aggregate document": { "device control document": [ { @@ -14786,6 +14780,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N3", "location identifier": "N3", @@ -14802,6 +14797,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14809,14 +14809,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "device control aggregate document": { "device control document": [ { @@ -14833,6 +14827,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N4", "location identifier": "N4", @@ -14849,6 +14844,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14856,14 +14856,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "device control aggregate document": { "device control document": [ { @@ -14880,6 +14874,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N5", "location identifier": "N5", @@ -14896,6 +14891,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14903,14 +14903,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "device control aggregate document": { "device control document": [ { @@ -14927,6 +14921,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N6", "location identifier": "N6", @@ -14943,6 +14938,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14950,14 +14950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "device control aggregate document": { "device control document": [ { @@ -14974,6 +14968,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N7", "location identifier": "N7", @@ -14990,6 +14985,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -14997,14 +14997,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "device control aggregate document": { "device control document": [ { @@ -15021,6 +15015,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N8", "location identifier": "N8", @@ -15037,6 +15032,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15044,14 +15044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "device control aggregate document": { "device control document": [ { @@ -15068,6 +15062,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N9", "location identifier": "N9", @@ -15084,6 +15079,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15091,14 +15091,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "device control aggregate document": { "device control document": [ { @@ -15115,6 +15109,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N10", "location identifier": "N10", @@ -15131,6 +15126,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15138,14 +15138,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "device control aggregate document": { "device control document": [ { @@ -15162,6 +15156,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N11", "location identifier": "N11", @@ -15178,6 +15173,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15185,14 +15185,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "device control aggregate document": { "device control document": [ { @@ -15209,6 +15203,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N12", "location identifier": "N12", @@ -15225,6 +15220,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15232,14 +15232,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "device control aggregate document": { "device control document": [ { @@ -15256,6 +15250,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N13", "location identifier": "N13", @@ -15272,6 +15267,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15279,14 +15279,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "device control aggregate document": { "device control document": [ { @@ -15303,6 +15297,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N14", "location identifier": "N14", @@ -15319,6 +15314,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15326,14 +15326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "device control aggregate document": { "device control document": [ { @@ -15350,6 +15344,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N15", "location identifier": "N15", @@ -15366,6 +15361,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15373,14 +15373,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "device control aggregate document": { "device control document": [ { @@ -15397,6 +15391,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N16", "location identifier": "N16", @@ -15413,6 +15408,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15420,14 +15420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "device control aggregate document": { "device control document": [ { @@ -15444,6 +15438,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N17", "location identifier": "N17", @@ -15460,6 +15455,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15467,14 +15467,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "device control aggregate document": { "device control document": [ { @@ -15491,6 +15485,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N18", "location identifier": "N18", @@ -15507,6 +15502,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15514,14 +15514,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "device control aggregate document": { "device control document": [ { @@ -15538,6 +15532,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N19", "location identifier": "N19", @@ -15554,6 +15549,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15561,14 +15561,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "device control aggregate document": { "device control document": [ { @@ -15585,6 +15579,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N20", "location identifier": "N20", @@ -15601,6 +15596,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15608,14 +15608,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "device control aggregate document": { "device control document": [ { @@ -15632,6 +15626,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N21", "location identifier": "N21", @@ -15648,6 +15643,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15655,14 +15655,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "device control aggregate document": { "device control document": [ { @@ -15679,6 +15673,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N22", "location identifier": "N22", @@ -15695,6 +15690,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15702,14 +15702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "device control aggregate document": { "device control document": [ { @@ -15726,6 +15720,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N23", "location identifier": "N23", @@ -15742,6 +15737,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15749,14 +15749,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "device control aggregate document": { "device control document": [ { @@ -15773,6 +15767,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM N24", "location identifier": "N24", @@ -15789,6 +15784,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15796,14 +15796,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "device control aggregate document": { "device control document": [ { @@ -15820,6 +15814,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O1", "location identifier": "O1", @@ -15836,6 +15831,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15843,14 +15843,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "device control aggregate document": { "device control document": [ { @@ -15867,6 +15861,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O2", "location identifier": "O2", @@ -15883,6 +15878,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15890,14 +15890,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "device control aggregate document": { "device control document": [ { @@ -15914,6 +15908,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O3", "location identifier": "O3", @@ -15930,6 +15925,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15937,14 +15937,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "device control aggregate document": { "device control document": [ { @@ -15961,6 +15955,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O4", "location identifier": "O4", @@ -15977,6 +15972,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -15984,14 +15984,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "device control aggregate document": { "device control document": [ { @@ -16008,6 +16002,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O5", "location identifier": "O5", @@ -16024,6 +16019,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16031,14 +16031,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "device control aggregate document": { "device control document": [ { @@ -16055,6 +16049,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O6", "location identifier": "O6", @@ -16071,6 +16066,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16078,14 +16078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "device control aggregate document": { "device control document": [ { @@ -16102,6 +16096,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O7", "location identifier": "O7", @@ -16118,6 +16113,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16125,14 +16125,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "device control aggregate document": { "device control document": [ { @@ -16149,6 +16143,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O8", "location identifier": "O8", @@ -16165,6 +16160,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16172,14 +16172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "device control aggregate document": { "device control document": [ { @@ -16196,6 +16190,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O9", "location identifier": "O9", @@ -16212,6 +16207,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16219,14 +16219,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "device control aggregate document": { "device control document": [ { @@ -16243,6 +16237,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O10", "location identifier": "O10", @@ -16259,6 +16254,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16266,14 +16266,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "device control aggregate document": { "device control document": [ { @@ -16290,6 +16284,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O11", "location identifier": "O11", @@ -16306,6 +16301,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16313,14 +16313,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "device control aggregate document": { "device control document": [ { @@ -16337,6 +16331,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O12", "location identifier": "O12", @@ -16353,6 +16348,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16360,14 +16360,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "device control aggregate document": { "device control document": [ { @@ -16384,6 +16378,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O13", "location identifier": "O13", @@ -16400,6 +16395,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16407,14 +16407,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "device control aggregate document": { "device control document": [ { @@ -16431,6 +16425,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O14", "location identifier": "O14", @@ -16447,6 +16442,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16454,14 +16454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "device control aggregate document": { "device control document": [ { @@ -16478,6 +16472,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O15", "location identifier": "O15", @@ -16494,6 +16489,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16501,14 +16501,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "device control aggregate document": { "device control document": [ { @@ -16525,6 +16519,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O16", "location identifier": "O16", @@ -16541,6 +16536,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16548,14 +16548,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "device control aggregate document": { "device control document": [ { @@ -16572,6 +16566,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O17", "location identifier": "O17", @@ -16588,6 +16583,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16595,14 +16595,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "device control aggregate document": { "device control document": [ { @@ -16619,6 +16613,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O18", "location identifier": "O18", @@ -16635,6 +16630,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16642,14 +16642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "device control aggregate document": { "device control document": [ { @@ -16666,6 +16660,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O19", "location identifier": "O19", @@ -16682,6 +16677,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16689,14 +16689,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "device control aggregate document": { "device control document": [ { @@ -16713,6 +16707,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O20", "location identifier": "O20", @@ -16729,6 +16724,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16736,14 +16736,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "device control aggregate document": { "device control document": [ { @@ -16760,6 +16754,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O21", "location identifier": "O21", @@ -16776,6 +16771,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16783,14 +16783,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "device control aggregate document": { "device control document": [ { @@ -16807,6 +16801,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O22", "location identifier": "O22", @@ -16823,6 +16818,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16830,14 +16830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "device control aggregate document": { "device control document": [ { @@ -16854,6 +16848,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O23", "location identifier": "O23", @@ -16870,6 +16865,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16877,14 +16877,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "device control aggregate document": { "device control document": [ { @@ -16901,6 +16895,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM O24", "location identifier": "O24", @@ -16917,6 +16912,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16924,14 +16924,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "device control aggregate document": { "device control document": [ { @@ -16948,6 +16942,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P1", "location identifier": "P1", @@ -16964,6 +16959,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -16971,14 +16971,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "device control aggregate document": { "device control document": [ { @@ -16995,6 +16989,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P2", "location identifier": "P2", @@ -17011,6 +17006,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17018,14 +17018,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "device control aggregate document": { "device control document": [ { @@ -17042,6 +17036,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P3", "location identifier": "P3", @@ -17058,6 +17053,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17065,14 +17065,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "device control aggregate document": { "device control document": [ { @@ -17089,6 +17083,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P4", "location identifier": "P4", @@ -17105,6 +17100,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17112,14 +17112,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "device control aggregate document": { "device control document": [ { @@ -17136,6 +17130,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P5", "location identifier": "P5", @@ -17152,6 +17147,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17159,14 +17159,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "device control aggregate document": { "device control document": [ { @@ -17183,6 +17177,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P6", "location identifier": "P6", @@ -17199,6 +17194,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17206,14 +17206,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "device control aggregate document": { "device control document": [ { @@ -17230,6 +17224,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P7", "location identifier": "P7", @@ -17246,6 +17241,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17253,14 +17253,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "device control aggregate document": { "device control document": [ { @@ -17277,6 +17271,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P8", "location identifier": "P8", @@ -17293,6 +17288,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17300,14 +17300,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "device control aggregate document": { "device control document": [ { @@ -17324,6 +17318,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P9", "location identifier": "P9", @@ -17340,6 +17335,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17347,14 +17347,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "device control aggregate document": { "device control document": [ { @@ -17371,6 +17365,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P10", "location identifier": "P10", @@ -17387,6 +17382,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17394,14 +17394,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "device control aggregate document": { "device control document": [ { @@ -17418,6 +17412,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P11", "location identifier": "P11", @@ -17434,6 +17429,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17441,14 +17441,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "device control aggregate document": { "device control document": [ { @@ -17465,6 +17459,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P12", "location identifier": "P12", @@ -17481,6 +17476,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17488,14 +17488,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "device control aggregate document": { "device control document": [ { @@ -17512,6 +17506,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P13", "location identifier": "P13", @@ -17528,6 +17523,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17535,14 +17535,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "device control aggregate document": { "device control document": [ { @@ -17559,6 +17553,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P14", "location identifier": "P14", @@ -17575,6 +17570,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17582,14 +17582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "device control aggregate document": { "device control document": [ { @@ -17606,6 +17600,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P15", "location identifier": "P15", @@ -17622,6 +17617,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17629,14 +17629,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "device control aggregate document": { "device control document": [ { @@ -17653,6 +17647,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P16", "location identifier": "P16", @@ -17669,6 +17664,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17676,14 +17676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "device control aggregate document": { "device control document": [ { @@ -17700,6 +17694,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P17", "location identifier": "P17", @@ -17716,6 +17711,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17723,14 +17723,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "device control aggregate document": { "device control document": [ { @@ -17747,6 +17741,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P18", "location identifier": "P18", @@ -17763,6 +17758,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17770,14 +17770,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "device control aggregate document": { "device control document": [ { @@ -17794,6 +17788,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P19", "location identifier": "P19", @@ -17810,6 +17805,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17817,14 +17817,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "device control aggregate document": { "device control document": [ { @@ -17841,6 +17835,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P20", "location identifier": "P20", @@ -17857,6 +17852,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17864,14 +17864,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "device control aggregate document": { "device control document": [ { @@ -17888,6 +17882,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P21", "location identifier": "P21", @@ -17904,6 +17899,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17911,14 +17911,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "device control aggregate document": { "device control document": [ { @@ -17935,6 +17929,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P22", "location identifier": "P22", @@ -17951,6 +17946,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -17958,14 +17958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "device control aggregate document": { "device control document": [ { @@ -17982,6 +17976,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P23", "location identifier": "P23", @@ -17998,6 +17993,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18005,14 +18005,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "device control aggregate document": { "device control document": [ { @@ -18029,6 +18023,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "sample document": { "sample identifier": "8/22/2023 10:50:28 AM P24", "location identifier": "P24", @@ -18045,6 +18040,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18052,14 +18052,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", "device control aggregate document": { "device control document": [ { @@ -18076,6 +18070,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A1", "location identifier": "A1", @@ -18092,6 +18087,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18099,14 +18099,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", "device control aggregate document": { "device control document": [ { @@ -18123,6 +18117,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A2", "location identifier": "A2", @@ -18139,6 +18134,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18146,14 +18146,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", "device control aggregate document": { "device control document": [ { @@ -18170,6 +18164,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A3", "location identifier": "A3", @@ -18186,6 +18181,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18193,14 +18193,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", "device control aggregate document": { "device control document": [ { @@ -18217,6 +18211,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A4", "location identifier": "A4", @@ -18233,6 +18228,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18240,14 +18240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", "device control aggregate document": { "device control document": [ { @@ -18264,6 +18258,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A5", "location identifier": "A5", @@ -18280,6 +18275,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18287,14 +18287,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", "device control aggregate document": { "device control document": [ { @@ -18311,6 +18305,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A6", "location identifier": "A6", @@ -18327,6 +18322,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18334,14 +18334,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", "device control aggregate document": { "device control document": [ { @@ -18358,6 +18352,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A7", "location identifier": "A7", @@ -18374,6 +18369,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18381,14 +18381,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", "device control aggregate document": { "device control document": [ { @@ -18405,6 +18399,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A8", "location identifier": "A8", @@ -18421,6 +18416,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18428,14 +18428,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", "device control aggregate document": { "device control document": [ { @@ -18452,6 +18446,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A9", "location identifier": "A9", @@ -18468,6 +18463,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18475,14 +18475,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", "device control aggregate document": { "device control document": [ { @@ -18499,6 +18493,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A10", "location identifier": "A10", @@ -18515,6 +18510,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18522,14 +18522,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", "device control aggregate document": { "device control document": [ { @@ -18546,6 +18540,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A11", "location identifier": "A11", @@ -18562,6 +18557,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18569,14 +18569,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", "device control aggregate document": { "device control document": [ { @@ -18593,6 +18587,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A12", "location identifier": "A12", @@ -18609,6 +18604,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18616,14 +18616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", "device control aggregate document": { "device control document": [ { @@ -18640,6 +18634,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A13", "location identifier": "A13", @@ -18656,6 +18651,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18663,14 +18663,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", "device control aggregate document": { "device control document": [ { @@ -18687,6 +18681,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A14", "location identifier": "A14", @@ -18703,21 +18698,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", "device control aggregate document": { "device control document": [ { @@ -18734,6 +18728,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A15", "location identifier": "A15", @@ -18750,6 +18745,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18757,14 +18757,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", "device control aggregate document": { "device control document": [ { @@ -18781,6 +18775,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A16", "location identifier": "A16", @@ -18797,6 +18792,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18804,14 +18804,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", "device control aggregate document": { "device control document": [ { @@ -18828,6 +18822,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A17", "location identifier": "A17", @@ -18844,6 +18839,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18851,14 +18851,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", "device control aggregate document": { "device control document": [ { @@ -18875,6 +18869,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A18", "location identifier": "A18", @@ -18891,6 +18886,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18898,14 +18898,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", "device control aggregate document": { "device control document": [ { @@ -18922,6 +18916,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A19", "location identifier": "A19", @@ -18938,6 +18933,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18945,14 +18945,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", "device control aggregate document": { "device control document": [ { @@ -18969,6 +18963,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A20", "location identifier": "A20", @@ -18985,6 +18980,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -18992,14 +18992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", "device control aggregate document": { "device control document": [ { @@ -19016,6 +19010,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A21", "location identifier": "A21", @@ -19032,6 +19027,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19039,14 +19039,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", "device control aggregate document": { "device control document": [ { @@ -19063,6 +19057,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A22", "location identifier": "A22", @@ -19079,6 +19074,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19086,14 +19086,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", "device control aggregate document": { "device control document": [ { @@ -19110,6 +19104,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A23", "location identifier": "A23", @@ -19126,6 +19121,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19133,14 +19133,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", "device control aggregate document": { "device control document": [ { @@ -19157,6 +19151,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM A24", "location identifier": "A24", @@ -19173,6 +19168,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19180,14 +19180,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", "device control aggregate document": { "device control document": [ { @@ -19204,6 +19198,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B1", "location identifier": "B1", @@ -19220,6 +19215,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19227,14 +19227,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", "device control aggregate document": { "device control document": [ { @@ -19251,6 +19245,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B2", "location identifier": "B2", @@ -19267,6 +19262,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19274,14 +19274,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", "device control aggregate document": { "device control document": [ { @@ -19298,6 +19292,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B3", "location identifier": "B3", @@ -19314,6 +19309,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19321,14 +19321,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", "device control aggregate document": { "device control document": [ { @@ -19345,6 +19339,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B4", "location identifier": "B4", @@ -19361,6 +19356,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19368,14 +19368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", "device control aggregate document": { "device control document": [ { @@ -19392,6 +19386,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B5", "location identifier": "B5", @@ -19408,6 +19403,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19415,14 +19415,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", "device control aggregate document": { "device control document": [ { @@ -19439,6 +19433,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B6", "location identifier": "B6", @@ -19455,6 +19450,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19462,14 +19462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", "device control aggregate document": { "device control document": [ { @@ -19486,6 +19480,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B7", "location identifier": "B7", @@ -19502,6 +19497,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19509,14 +19509,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", "device control aggregate document": { "device control document": [ { @@ -19533,6 +19527,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B8", "location identifier": "B8", @@ -19549,6 +19544,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19556,14 +19556,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", "device control aggregate document": { "device control document": [ { @@ -19580,6 +19574,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B9", "location identifier": "B9", @@ -19596,6 +19591,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19603,14 +19603,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", "device control aggregate document": { "device control document": [ { @@ -19627,6 +19621,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B10", "location identifier": "B10", @@ -19643,6 +19638,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19650,14 +19650,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", "device control aggregate document": { "device control document": [ { @@ -19674,6 +19668,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B11", "location identifier": "B11", @@ -19690,6 +19685,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19697,14 +19697,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", "device control aggregate document": { "device control document": [ { @@ -19721,6 +19715,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B12", "location identifier": "B12", @@ -19737,6 +19732,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19744,14 +19744,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", "device control aggregate document": { "device control document": [ { @@ -19768,6 +19762,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B13", "location identifier": "B13", @@ -19784,6 +19779,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19791,14 +19791,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", "device control aggregate document": { "device control document": [ { @@ -19815,6 +19809,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B14", "location identifier": "B14", @@ -19831,6 +19826,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19838,14 +19838,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", "device control aggregate document": { "device control document": [ { @@ -19862,6 +19856,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B15", "location identifier": "B15", @@ -19878,6 +19873,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19885,14 +19885,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", "device control aggregate document": { "device control document": [ { @@ -19909,6 +19903,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B16", "location identifier": "B16", @@ -19925,6 +19920,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19932,14 +19932,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", "device control aggregate document": { "device control document": [ { @@ -19956,6 +19950,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B17", "location identifier": "B17", @@ -19972,6 +19967,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -19979,14 +19979,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", "device control aggregate document": { "device control document": [ { @@ -20003,6 +19997,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B18", "location identifier": "B18", @@ -20019,6 +20014,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20026,14 +20026,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", "device control aggregate document": { "device control document": [ { @@ -20050,6 +20044,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B19", "location identifier": "B19", @@ -20066,6 +20061,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20073,14 +20073,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", "device control aggregate document": { "device control document": [ { @@ -20097,6 +20091,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B20", "location identifier": "B20", @@ -20113,6 +20108,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20120,14 +20120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", "device control aggregate document": { "device control document": [ { @@ -20144,6 +20138,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B21", "location identifier": "B21", @@ -20160,6 +20155,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20167,14 +20167,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", "device control aggregate document": { "device control document": [ { @@ -20191,6 +20185,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B22", "location identifier": "B22", @@ -20207,6 +20202,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20214,14 +20214,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", "device control aggregate document": { "device control document": [ { @@ -20238,6 +20232,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B23", "location identifier": "B23", @@ -20254,6 +20249,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20261,14 +20261,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", "device control aggregate document": { "device control document": [ { @@ -20285,6 +20279,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM B24", "location identifier": "B24", @@ -20301,6 +20296,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20308,14 +20308,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", "device control aggregate document": { "device control document": [ { @@ -20332,6 +20326,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C1", "location identifier": "C1", @@ -20348,6 +20343,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20355,14 +20355,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", "device control aggregate document": { "device control document": [ { @@ -20379,6 +20373,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C2", "location identifier": "C2", @@ -20395,6 +20390,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20402,14 +20402,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", "device control aggregate document": { "device control document": [ { @@ -20426,6 +20420,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C3", "location identifier": "C3", @@ -20442,6 +20437,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20449,14 +20449,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", "device control aggregate document": { "device control document": [ { @@ -20473,6 +20467,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C4", "location identifier": "C4", @@ -20489,6 +20484,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20496,14 +20496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", "device control aggregate document": { "device control document": [ { @@ -20520,6 +20514,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C5", "location identifier": "C5", @@ -20536,6 +20531,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20543,14 +20543,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", "device control aggregate document": { "device control document": [ { @@ -20567,6 +20561,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C6", "location identifier": "C6", @@ -20583,6 +20578,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20590,14 +20590,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", "device control aggregate document": { "device control document": [ { @@ -20614,6 +20608,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C7", "location identifier": "C7", @@ -20630,6 +20625,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20637,14 +20637,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", "device control aggregate document": { "device control document": [ { @@ -20661,6 +20655,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C8", "location identifier": "C8", @@ -20677,6 +20672,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20684,14 +20684,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", "device control aggregate document": { "device control document": [ { @@ -20708,6 +20702,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C9", "location identifier": "C9", @@ -20724,6 +20719,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20731,14 +20731,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", "device control aggregate document": { "device control document": [ { @@ -20755,6 +20749,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C10", "location identifier": "C10", @@ -20771,6 +20766,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20778,14 +20778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", "device control aggregate document": { "device control document": [ { @@ -20802,6 +20796,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C11", "location identifier": "C11", @@ -20818,6 +20813,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20825,14 +20825,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", "device control aggregate document": { "device control document": [ { @@ -20849,6 +20843,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C12", "location identifier": "C12", @@ -20865,6 +20860,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20872,14 +20872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", "device control aggregate document": { "device control document": [ { @@ -20896,6 +20890,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C13", "location identifier": "C13", @@ -20912,6 +20907,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20919,14 +20919,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", "device control aggregate document": { "device control document": [ { @@ -20943,6 +20937,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C14", "location identifier": "C14", @@ -20959,6 +20954,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -20966,14 +20966,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", "device control aggregate document": { "device control document": [ { @@ -20990,6 +20984,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C15", "location identifier": "C15", @@ -21006,6 +21001,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21013,14 +21013,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", "device control aggregate document": { "device control document": [ { @@ -21037,6 +21031,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C16", "location identifier": "C16", @@ -21053,6 +21048,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21060,14 +21060,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", "device control aggregate document": { "device control document": [ { @@ -21084,6 +21078,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C17", "location identifier": "C17", @@ -21100,6 +21095,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21107,14 +21107,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", "device control aggregate document": { "device control document": [ { @@ -21131,6 +21125,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C18", "location identifier": "C18", @@ -21147,6 +21142,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21154,14 +21154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", "device control aggregate document": { "device control document": [ { @@ -21178,6 +21172,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C19", "location identifier": "C19", @@ -21194,6 +21189,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21201,14 +21201,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", "device control aggregate document": { "device control document": [ { @@ -21225,6 +21219,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C20", "location identifier": "C20", @@ -21241,6 +21236,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21248,14 +21248,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", "device control aggregate document": { "device control document": [ { @@ -21272,6 +21266,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C21", "location identifier": "C21", @@ -21288,6 +21283,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21295,14 +21295,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", "device control aggregate document": { "device control document": [ { @@ -21319,6 +21313,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C22", "location identifier": "C22", @@ -21335,6 +21330,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21342,14 +21342,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", "device control aggregate document": { "device control document": [ { @@ -21366,6 +21360,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C23", "location identifier": "C23", @@ -21382,6 +21377,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21389,14 +21389,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", "device control aggregate document": { "device control document": [ { @@ -21413,6 +21407,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM C24", "location identifier": "C24", @@ -21429,6 +21424,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21436,14 +21436,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", "device control aggregate document": { "device control document": [ { @@ -21460,6 +21454,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D1", "location identifier": "D1", @@ -21476,6 +21471,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21483,14 +21483,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", "device control aggregate document": { "device control document": [ { @@ -21507,6 +21501,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D2", "location identifier": "D2", @@ -21523,6 +21518,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21530,14 +21530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", "device control aggregate document": { "device control document": [ { @@ -21554,6 +21548,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D3", "location identifier": "D3", @@ -21570,6 +21565,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21577,14 +21577,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", "device control aggregate document": { "device control document": [ { @@ -21601,6 +21595,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D4", "location identifier": "D4", @@ -21617,6 +21612,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21624,14 +21624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", "device control aggregate document": { "device control document": [ { @@ -21648,6 +21642,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D5", "location identifier": "D5", @@ -21664,6 +21659,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21671,14 +21671,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", "device control aggregate document": { "device control document": [ { @@ -21695,6 +21689,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D6", "location identifier": "D6", @@ -21711,6 +21706,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21718,14 +21718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", "device control aggregate document": { "device control document": [ { @@ -21742,6 +21736,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D7", "location identifier": "D7", @@ -21758,6 +21753,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21765,14 +21765,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", "device control aggregate document": { "device control document": [ { @@ -21789,6 +21783,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D8", "location identifier": "D8", @@ -21805,6 +21800,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21812,14 +21812,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", "device control aggregate document": { "device control document": [ { @@ -21836,6 +21830,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D9", "location identifier": "D9", @@ -21852,6 +21847,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21859,14 +21859,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", "device control aggregate document": { "device control document": [ { @@ -21883,6 +21877,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D10", "location identifier": "D10", @@ -21899,6 +21894,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21906,14 +21906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", "device control aggregate document": { "device control document": [ { @@ -21930,6 +21924,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D11", "location identifier": "D11", @@ -21946,6 +21941,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -21953,14 +21953,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", "device control aggregate document": { "device control document": [ { @@ -21977,6 +21971,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D12", "location identifier": "D12", @@ -21993,6 +21988,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22000,14 +22000,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", "device control aggregate document": { "device control document": [ { @@ -22024,6 +22018,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D13", "location identifier": "D13", @@ -22040,6 +22035,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22047,14 +22047,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", "device control aggregate document": { "device control document": [ { @@ -22071,6 +22065,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D14", "location identifier": "D14", @@ -22087,6 +22082,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22094,14 +22094,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", "device control aggregate document": { "device control document": [ { @@ -22118,6 +22112,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D15", "location identifier": "D15", @@ -22134,6 +22129,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22141,14 +22141,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", "device control aggregate document": { "device control document": [ { @@ -22165,6 +22159,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D16", "location identifier": "D16", @@ -22181,6 +22176,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22188,14 +22188,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", "device control aggregate document": { "device control document": [ { @@ -22212,6 +22206,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D17", "location identifier": "D17", @@ -22228,6 +22223,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22235,14 +22235,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", "device control aggregate document": { "device control document": [ { @@ -22259,6 +22253,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D18", "location identifier": "D18", @@ -22275,6 +22270,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22282,14 +22282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", "device control aggregate document": { "device control document": [ { @@ -22306,6 +22300,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D19", "location identifier": "D19", @@ -22322,6 +22317,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22329,14 +22329,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", "device control aggregate document": { "device control document": [ { @@ -22353,6 +22347,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D20", "location identifier": "D20", @@ -22369,6 +22364,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22376,14 +22376,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", "device control aggregate document": { "device control document": [ { @@ -22400,6 +22394,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D21", "location identifier": "D21", @@ -22416,6 +22411,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22423,14 +22423,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", "device control aggregate document": { "device control document": [ { @@ -22447,6 +22441,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D22", "location identifier": "D22", @@ -22463,6 +22458,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22470,14 +22470,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", "device control aggregate document": { "device control document": [ { @@ -22494,6 +22488,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D23", "location identifier": "D23", @@ -22510,6 +22505,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22517,14 +22517,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", "device control aggregate document": { "device control document": [ { @@ -22541,6 +22535,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM D24", "location identifier": "D24", @@ -22557,6 +22552,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22564,14 +22564,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", "device control aggregate document": { "device control document": [ { @@ -22588,6 +22582,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E1", "location identifier": "E1", @@ -22604,6 +22599,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22611,14 +22611,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", "device control aggregate document": { "device control document": [ { @@ -22635,6 +22629,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E2", "location identifier": "E2", @@ -22651,6 +22646,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22658,14 +22658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", "device control aggregate document": { "device control document": [ { @@ -22682,6 +22676,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E3", "location identifier": "E3", @@ -22698,21 +22693,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", "device control aggregate document": { "device control document": [ { @@ -22729,6 +22723,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E4", "location identifier": "E4", @@ -22745,6 +22740,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22752,14 +22752,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", "device control aggregate document": { "device control document": [ { @@ -22776,6 +22770,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E5", "location identifier": "E5", @@ -22792,6 +22787,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22799,14 +22799,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", "device control aggregate document": { "device control document": [ { @@ -22823,6 +22817,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E6", "location identifier": "E6", @@ -22839,6 +22834,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22846,14 +22846,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", "device control aggregate document": { "device control document": [ { @@ -22870,6 +22864,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E7", "location identifier": "E7", @@ -22886,6 +22881,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22893,14 +22893,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", "device control aggregate document": { "device control document": [ { @@ -22917,6 +22911,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E8", "location identifier": "E8", @@ -22933,6 +22928,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22940,14 +22940,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", "device control aggregate document": { "device control document": [ { @@ -22964,6 +22958,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E9", "location identifier": "E9", @@ -22980,6 +22975,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -22987,14 +22987,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", "device control aggregate document": { "device control document": [ { @@ -23011,6 +23005,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E10", "location identifier": "E10", @@ -23027,6 +23022,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23034,14 +23034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", "device control aggregate document": { "device control document": [ { @@ -23058,6 +23052,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E11", "location identifier": "E11", @@ -23074,6 +23069,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23081,14 +23081,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", "device control aggregate document": { "device control document": [ { @@ -23105,6 +23099,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E12", "location identifier": "E12", @@ -23121,6 +23116,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23128,14 +23128,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", "device control aggregate document": { "device control document": [ { @@ -23152,6 +23146,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E13", "location identifier": "E13", @@ -23168,6 +23163,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23175,14 +23175,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", "device control aggregate document": { "device control document": [ { @@ -23199,6 +23193,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E14", "location identifier": "E14", @@ -23215,6 +23210,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23222,14 +23222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", "device control aggregate document": { "device control document": [ { @@ -23246,6 +23240,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E15", "location identifier": "E15", @@ -23262,6 +23257,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23269,14 +23269,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", "device control aggregate document": { "device control document": [ { @@ -23293,6 +23287,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E16", "location identifier": "E16", @@ -23309,6 +23304,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23316,14 +23316,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", "device control aggregate document": { "device control document": [ { @@ -23340,6 +23334,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E17", "location identifier": "E17", @@ -23356,6 +23351,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23363,14 +23363,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", "device control aggregate document": { "device control document": [ { @@ -23387,6 +23381,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E18", "location identifier": "E18", @@ -23403,6 +23398,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23410,14 +23410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", "device control aggregate document": { "device control document": [ { @@ -23434,6 +23428,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E19", "location identifier": "E19", @@ -23450,6 +23445,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23457,14 +23457,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", "device control aggregate document": { "device control document": [ { @@ -23481,6 +23475,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E20", "location identifier": "E20", @@ -23497,6 +23492,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23504,14 +23504,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", "device control aggregate document": { "device control document": [ { @@ -23528,6 +23522,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E21", "location identifier": "E21", @@ -23544,6 +23539,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23551,14 +23551,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", "device control aggregate document": { "device control document": [ { @@ -23575,6 +23569,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E22", "location identifier": "E22", @@ -23591,6 +23586,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23598,14 +23598,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", "device control aggregate document": { "device control document": [ { @@ -23622,6 +23616,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E23", "location identifier": "E23", @@ -23638,6 +23633,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23645,14 +23645,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", "device control aggregate document": { "device control document": [ { @@ -23669,6 +23663,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM E24", "location identifier": "E24", @@ -23685,6 +23680,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23692,14 +23692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", "device control aggregate document": { "device control document": [ { @@ -23716,6 +23710,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F1", "location identifier": "F1", @@ -23732,6 +23727,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23739,14 +23739,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", "device control aggregate document": { "device control document": [ { @@ -23763,6 +23757,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F2", "location identifier": "F2", @@ -23779,6 +23774,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23786,14 +23786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", "device control aggregate document": { "device control document": [ { @@ -23810,6 +23804,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F3", "location identifier": "F3", @@ -23826,6 +23821,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23833,14 +23833,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", "device control aggregate document": { "device control document": [ { @@ -23857,6 +23851,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F4", "location identifier": "F4", @@ -23873,6 +23868,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23880,14 +23880,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", "device control aggregate document": { "device control document": [ { @@ -23904,6 +23898,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F5", "location identifier": "F5", @@ -23920,6 +23915,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23927,14 +23927,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", "device control aggregate document": { "device control document": [ { @@ -23951,6 +23945,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F6", "location identifier": "F6", @@ -23967,6 +23962,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -23974,14 +23974,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", "device control aggregate document": { "device control document": [ { @@ -23998,6 +23992,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F7", "location identifier": "F7", @@ -24014,6 +24009,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24021,14 +24021,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", "device control aggregate document": { "device control document": [ { @@ -24045,6 +24039,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F8", "location identifier": "F8", @@ -24061,6 +24056,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24068,14 +24068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", "device control aggregate document": { "device control document": [ { @@ -24092,6 +24086,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F9", "location identifier": "F9", @@ -24108,6 +24103,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24115,14 +24115,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", "device control aggregate document": { "device control document": [ { @@ -24139,6 +24133,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F10", "location identifier": "F10", @@ -24155,6 +24150,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24162,14 +24162,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", "device control aggregate document": { "device control document": [ { @@ -24186,6 +24180,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F11", "location identifier": "F11", @@ -24202,6 +24197,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24209,14 +24209,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", "device control aggregate document": { "device control document": [ { @@ -24233,6 +24227,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F12", "location identifier": "F12", @@ -24249,6 +24244,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24256,14 +24256,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", "device control aggregate document": { "device control document": [ { @@ -24280,6 +24274,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F13", "location identifier": "F13", @@ -24296,6 +24291,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24303,14 +24303,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", "device control aggregate document": { "device control document": [ { @@ -24327,6 +24321,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F14", "location identifier": "F14", @@ -24343,6 +24338,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24350,14 +24350,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", "device control aggregate document": { "device control document": [ { @@ -24374,6 +24368,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F15", "location identifier": "F15", @@ -24390,6 +24385,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24397,14 +24397,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", "device control aggregate document": { "device control document": [ { @@ -24421,6 +24415,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F16", "location identifier": "F16", @@ -24437,6 +24432,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24444,14 +24444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", "device control aggregate document": { "device control document": [ { @@ -24468,6 +24462,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F17", "location identifier": "F17", @@ -24484,6 +24479,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24491,14 +24491,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", "device control aggregate document": { "device control document": [ { @@ -24515,6 +24509,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F18", "location identifier": "F18", @@ -24531,6 +24526,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24538,14 +24538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", "device control aggregate document": { "device control document": [ { @@ -24562,6 +24556,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F19", "location identifier": "F19", @@ -24578,6 +24573,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24585,14 +24585,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", "device control aggregate document": { "device control document": [ { @@ -24609,6 +24603,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F20", "location identifier": "F20", @@ -24625,6 +24620,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24632,14 +24632,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", "device control aggregate document": { "device control document": [ { @@ -24656,6 +24650,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F21", "location identifier": "F21", @@ -24672,6 +24667,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24679,14 +24679,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", "device control aggregate document": { "device control document": [ { @@ -24703,6 +24697,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F22", "location identifier": "F22", @@ -24719,6 +24714,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24726,14 +24726,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", "device control aggregate document": { "device control document": [ { @@ -24750,6 +24744,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F23", "location identifier": "F23", @@ -24766,6 +24761,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24773,14 +24773,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", "device control aggregate document": { "device control document": [ { @@ -24797,6 +24791,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM F24", "location identifier": "F24", @@ -24813,6 +24808,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24820,14 +24820,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", "device control aggregate document": { "device control document": [ { @@ -24844,6 +24838,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G1", "location identifier": "G1", @@ -24860,6 +24855,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24867,14 +24867,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", "device control aggregate document": { "device control document": [ { @@ -24891,6 +24885,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G2", "location identifier": "G2", @@ -24907,6 +24902,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24914,14 +24914,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", "device control aggregate document": { "device control document": [ { @@ -24938,6 +24932,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G3", "location identifier": "G3", @@ -24954,6 +24949,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -24961,14 +24961,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", "device control aggregate document": { "device control document": [ { @@ -24985,6 +24979,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G4", "location identifier": "G4", @@ -25001,6 +24996,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25008,14 +25008,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", "device control aggregate document": { "device control document": [ { @@ -25032,6 +25026,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G5", "location identifier": "G5", @@ -25048,6 +25043,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25055,14 +25055,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", "device control aggregate document": { "device control document": [ { @@ -25079,6 +25073,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G6", "location identifier": "G6", @@ -25095,6 +25090,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25102,14 +25102,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", "device control aggregate document": { "device control document": [ { @@ -25126,6 +25120,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G7", "location identifier": "G7", @@ -25142,6 +25137,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25149,14 +25149,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", "device control aggregate document": { "device control document": [ { @@ -25173,6 +25167,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G8", "location identifier": "G8", @@ -25189,6 +25184,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25196,14 +25196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", "device control aggregate document": { "device control document": [ { @@ -25220,6 +25214,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G9", "location identifier": "G9", @@ -25236,6 +25231,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25243,14 +25243,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", "device control aggregate document": { "device control document": [ { @@ -25267,6 +25261,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G10", "location identifier": "G10", @@ -25283,6 +25278,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25290,14 +25290,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", "device control aggregate document": { "device control document": [ { @@ -25314,6 +25308,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G11", "location identifier": "G11", @@ -25330,6 +25325,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25337,14 +25337,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", "device control aggregate document": { "device control document": [ { @@ -25361,6 +25355,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G12", "location identifier": "G12", @@ -25377,6 +25372,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25384,14 +25384,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", "device control aggregate document": { "device control document": [ { @@ -25408,6 +25402,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G13", "location identifier": "G13", @@ -25424,6 +25419,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25431,14 +25431,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", "device control aggregate document": { "device control document": [ { @@ -25455,6 +25449,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G14", "location identifier": "G14", @@ -25471,6 +25466,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25478,14 +25478,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", "device control aggregate document": { "device control document": [ { @@ -25502,6 +25496,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G15", "location identifier": "G15", @@ -25518,6 +25513,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25525,14 +25525,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", "device control aggregate document": { "device control document": [ { @@ -25549,6 +25543,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G16", "location identifier": "G16", @@ -25565,6 +25560,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25572,14 +25572,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", "device control aggregate document": { "device control document": [ { @@ -25596,6 +25590,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G17", "location identifier": "G17", @@ -25612,6 +25607,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25619,14 +25619,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", "device control aggregate document": { "device control document": [ { @@ -25643,6 +25637,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G18", "location identifier": "G18", @@ -25659,6 +25654,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25666,14 +25666,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", "device control aggregate document": { "device control document": [ { @@ -25690,6 +25684,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G19", "location identifier": "G19", @@ -25706,6 +25701,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25713,14 +25713,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", "device control aggregate document": { "device control document": [ { @@ -25737,6 +25731,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G20", "location identifier": "G20", @@ -25753,6 +25748,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25760,14 +25760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", "device control aggregate document": { "device control document": [ { @@ -25784,6 +25778,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G21", "location identifier": "G21", @@ -25800,6 +25795,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25807,14 +25807,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", "device control aggregate document": { "device control document": [ { @@ -25831,6 +25825,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G22", "location identifier": "G22", @@ -25847,6 +25842,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25854,14 +25854,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", "device control aggregate document": { "device control document": [ { @@ -25878,6 +25872,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G23", "location identifier": "G23", @@ -25894,6 +25889,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25901,14 +25901,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", "device control aggregate document": { "device control document": [ { @@ -25925,6 +25919,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM G24", "location identifier": "G24", @@ -25941,6 +25936,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25948,14 +25948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", "device control aggregate document": { "device control document": [ { @@ -25972,6 +25966,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H1", "location identifier": "H1", @@ -25988,6 +25983,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -25995,14 +25995,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", "device control aggregate document": { "device control document": [ { @@ -26019,6 +26013,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H2", "location identifier": "H2", @@ -26035,6 +26030,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26042,14 +26042,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", "device control aggregate document": { "device control document": [ { @@ -26066,6 +26060,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H3", "location identifier": "H3", @@ -26082,6 +26077,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26089,14 +26089,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", "device control aggregate document": { "device control document": [ { @@ -26113,6 +26107,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H4", "location identifier": "H4", @@ -26129,6 +26124,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26136,14 +26136,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", "device control aggregate document": { "device control document": [ { @@ -26160,6 +26154,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H5", "location identifier": "H5", @@ -26176,6 +26171,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26183,14 +26183,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", "device control aggregate document": { "device control document": [ { @@ -26207,6 +26201,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H6", "location identifier": "H6", @@ -26223,6 +26218,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26230,14 +26230,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", "device control aggregate document": { "device control document": [ { @@ -26254,6 +26248,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H7", "location identifier": "H7", @@ -26270,6 +26265,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26277,14 +26277,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", "device control aggregate document": { "device control document": [ { @@ -26301,6 +26295,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H8", "location identifier": "H8", @@ -26317,6 +26312,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26324,14 +26324,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", "device control aggregate document": { "device control document": [ { @@ -26348,6 +26342,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H9", "location identifier": "H9", @@ -26364,6 +26359,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26371,14 +26371,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", "device control aggregate document": { "device control document": [ { @@ -26395,6 +26389,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H10", "location identifier": "H10", @@ -26411,6 +26406,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26418,14 +26418,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", "device control aggregate document": { "device control document": [ { @@ -26442,6 +26436,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H11", "location identifier": "H11", @@ -26458,6 +26453,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26465,14 +26465,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", "device control aggregate document": { "device control document": [ { @@ -26489,6 +26483,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H12", "location identifier": "H12", @@ -26505,6 +26500,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26512,14 +26512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", "device control aggregate document": { "device control document": [ { @@ -26536,6 +26530,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H13", "location identifier": "H13", @@ -26552,6 +26547,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26559,14 +26559,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", "device control aggregate document": { "device control document": [ { @@ -26583,6 +26577,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H14", "location identifier": "H14", @@ -26599,6 +26594,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26606,14 +26606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", "device control aggregate document": { "device control document": [ { @@ -26630,6 +26624,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H15", "location identifier": "H15", @@ -26646,6 +26641,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26653,14 +26653,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", "device control aggregate document": { "device control document": [ { @@ -26677,6 +26671,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H16", "location identifier": "H16", @@ -26693,21 +26688,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", "device control aggregate document": { "device control document": [ { @@ -26724,6 +26718,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H17", "location identifier": "H17", @@ -26740,6 +26735,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26747,14 +26747,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", "device control aggregate document": { "device control document": [ { @@ -26771,6 +26765,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H18", "location identifier": "H18", @@ -26787,6 +26782,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26794,14 +26794,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", "device control aggregate document": { "device control document": [ { @@ -26818,6 +26812,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H19", "location identifier": "H19", @@ -26834,6 +26829,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26841,14 +26841,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", "device control aggregate document": { "device control document": [ { @@ -26865,6 +26859,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H20", "location identifier": "H20", @@ -26881,6 +26876,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26888,14 +26888,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", "device control aggregate document": { "device control document": [ { @@ -26912,6 +26906,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H21", "location identifier": "H21", @@ -26928,6 +26923,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26935,14 +26935,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", "device control aggregate document": { "device control document": [ { @@ -26959,6 +26953,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H22", "location identifier": "H22", @@ -26975,6 +26970,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -26982,14 +26982,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", "device control aggregate document": { "device control document": [ { @@ -27006,6 +27000,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H23", "location identifier": "H23", @@ -27022,6 +27017,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27029,14 +27029,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", "device control aggregate document": { "device control document": [ { @@ -27053,6 +27047,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM H24", "location identifier": "H24", @@ -27069,6 +27064,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27076,14 +27076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", "device control aggregate document": { "device control document": [ { @@ -27100,6 +27094,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I1", "location identifier": "I1", @@ -27116,6 +27111,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27123,14 +27123,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", "device control aggregate document": { "device control document": [ { @@ -27147,6 +27141,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I2", "location identifier": "I2", @@ -27163,6 +27158,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27170,14 +27170,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", "device control aggregate document": { "device control document": [ { @@ -27194,6 +27188,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I3", "location identifier": "I3", @@ -27210,6 +27205,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27217,14 +27217,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", "device control aggregate document": { "device control document": [ { @@ -27241,6 +27235,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I4", "location identifier": "I4", @@ -27257,6 +27252,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27264,14 +27264,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", "device control aggregate document": { "device control document": [ { @@ -27288,6 +27282,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I5", "location identifier": "I5", @@ -27304,6 +27299,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27311,14 +27311,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", "device control aggregate document": { "device control document": [ { @@ -27335,6 +27329,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I6", "location identifier": "I6", @@ -27351,6 +27346,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27358,14 +27358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", "device control aggregate document": { "device control document": [ { @@ -27382,6 +27376,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I7", "location identifier": "I7", @@ -27398,6 +27393,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27405,14 +27405,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", "device control aggregate document": { "device control document": [ { @@ -27429,6 +27423,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I8", "location identifier": "I8", @@ -27445,6 +27440,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27452,14 +27452,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", "device control aggregate document": { "device control document": [ { @@ -27476,6 +27470,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I9", "location identifier": "I9", @@ -27492,6 +27487,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27499,14 +27499,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", "device control aggregate document": { "device control document": [ { @@ -27523,6 +27517,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I10", "location identifier": "I10", @@ -27539,6 +27534,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27546,14 +27546,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", "device control aggregate document": { "device control document": [ { @@ -27570,6 +27564,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I11", "location identifier": "I11", @@ -27586,6 +27581,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27593,14 +27593,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", "device control aggregate document": { "device control document": [ { @@ -27617,6 +27611,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I12", "location identifier": "I12", @@ -27633,6 +27628,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27640,14 +27640,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", "device control aggregate document": { "device control document": [ { @@ -27664,6 +27658,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I13", "location identifier": "I13", @@ -27680,6 +27675,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27687,14 +27687,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", "device control aggregate document": { "device control document": [ { @@ -27711,6 +27705,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I14", "location identifier": "I14", @@ -27727,6 +27722,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27734,14 +27734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", "device control aggregate document": { "device control document": [ { @@ -27758,6 +27752,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I15", "location identifier": "I15", @@ -27774,6 +27769,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27781,14 +27781,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", "device control aggregate document": { "device control document": [ { @@ -27805,6 +27799,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I16", "location identifier": "I16", @@ -27821,6 +27816,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27828,14 +27828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", "device control aggregate document": { "device control document": [ { @@ -27852,6 +27846,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I17", "location identifier": "I17", @@ -27868,6 +27863,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27875,14 +27875,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", "device control aggregate document": { "device control document": [ { @@ -27899,6 +27893,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I18", "location identifier": "I18", @@ -27915,6 +27910,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27922,14 +27922,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", "device control aggregate document": { "device control document": [ { @@ -27946,6 +27940,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I19", "location identifier": "I19", @@ -27962,6 +27957,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -27969,14 +27969,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", "device control aggregate document": { "device control document": [ { @@ -27993,6 +27987,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I20", "location identifier": "I20", @@ -28009,6 +28004,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28016,14 +28016,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", "device control aggregate document": { "device control document": [ { @@ -28040,6 +28034,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I21", "location identifier": "I21", @@ -28056,6 +28051,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28063,14 +28063,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", "device control aggregate document": { "device control document": [ { @@ -28087,6 +28081,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I22", "location identifier": "I22", @@ -28103,6 +28098,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28110,14 +28110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", "device control aggregate document": { "device control document": [ { @@ -28134,6 +28128,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I23", "location identifier": "I23", @@ -28150,6 +28145,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28157,14 +28157,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", "device control aggregate document": { "device control document": [ { @@ -28181,6 +28175,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM I24", "location identifier": "I24", @@ -28197,6 +28192,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28204,14 +28204,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", "device control aggregate document": { "device control document": [ { @@ -28228,6 +28222,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J1", "location identifier": "J1", @@ -28244,6 +28239,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28251,14 +28251,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", "device control aggregate document": { "device control document": [ { @@ -28275,6 +28269,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J2", "location identifier": "J2", @@ -28291,6 +28286,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28298,14 +28298,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", "device control aggregate document": { "device control document": [ { @@ -28322,6 +28316,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J3", "location identifier": "J3", @@ -28338,6 +28333,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28345,14 +28345,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", "device control aggregate document": { "device control document": [ { @@ -28369,6 +28363,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J4", "location identifier": "J4", @@ -28385,6 +28380,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28392,14 +28392,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", "device control aggregate document": { "device control document": [ { @@ -28416,6 +28410,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J5", "location identifier": "J5", @@ -28432,6 +28427,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28439,14 +28439,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", "device control aggregate document": { "device control document": [ { @@ -28463,6 +28457,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J6", "location identifier": "J6", @@ -28479,6 +28474,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28486,14 +28486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", "device control aggregate document": { "device control document": [ { @@ -28510,6 +28504,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J7", "location identifier": "J7", @@ -28526,6 +28521,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28533,14 +28533,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", "device control aggregate document": { "device control document": [ { @@ -28557,6 +28551,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J8", "location identifier": "J8", @@ -28573,6 +28568,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28580,14 +28580,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", "device control aggregate document": { "device control document": [ { @@ -28604,6 +28598,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J9", "location identifier": "J9", @@ -28620,6 +28615,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28627,14 +28627,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", "device control aggregate document": { "device control document": [ { @@ -28651,6 +28645,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J10", "location identifier": "J10", @@ -28667,6 +28662,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28674,14 +28674,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", "device control aggregate document": { "device control document": [ { @@ -28698,6 +28692,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J11", "location identifier": "J11", @@ -28714,6 +28709,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28721,14 +28721,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", "device control aggregate document": { "device control document": [ { @@ -28745,6 +28739,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J12", "location identifier": "J12", @@ -28761,6 +28756,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28768,14 +28768,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", "device control aggregate document": { "device control document": [ { @@ -28792,6 +28786,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J13", "location identifier": "J13", @@ -28808,6 +28803,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28815,14 +28815,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", "device control aggregate document": { "device control document": [ { @@ -28839,6 +28833,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J14", "location identifier": "J14", @@ -28855,6 +28850,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28862,14 +28862,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", "device control aggregate document": { "device control document": [ { @@ -28886,6 +28880,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J15", "location identifier": "J15", @@ -28902,6 +28897,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28909,14 +28909,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", "device control aggregate document": { "device control document": [ { @@ -28933,6 +28927,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J16", "location identifier": "J16", @@ -28949,6 +28944,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -28956,14 +28956,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", "device control aggregate document": { "device control document": [ { @@ -28980,6 +28974,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J17", "location identifier": "J17", @@ -28996,6 +28991,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29003,14 +29003,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", "device control aggregate document": { "device control document": [ { @@ -29027,6 +29021,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J18", "location identifier": "J18", @@ -29043,6 +29038,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29050,14 +29050,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", "device control aggregate document": { "device control document": [ { @@ -29074,6 +29068,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J19", "location identifier": "J19", @@ -29090,6 +29085,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29097,14 +29097,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", "device control aggregate document": { "device control document": [ { @@ -29121,6 +29115,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J20", "location identifier": "J20", @@ -29137,6 +29132,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29144,14 +29144,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", "device control aggregate document": { "device control document": [ { @@ -29168,6 +29162,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J21", "location identifier": "J21", @@ -29184,6 +29179,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29191,14 +29191,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", "device control aggregate document": { "device control document": [ { @@ -29215,6 +29209,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J22", "location identifier": "J22", @@ -29231,6 +29226,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29238,14 +29238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", "device control aggregate document": { "device control document": [ { @@ -29262,6 +29256,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J23", "location identifier": "J23", @@ -29278,6 +29273,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29285,14 +29285,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", "device control aggregate document": { "device control document": [ { @@ -29309,6 +29303,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM J24", "location identifier": "J24", @@ -29325,6 +29320,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29332,14 +29332,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", "device control aggregate document": { "device control document": [ { @@ -29356,6 +29350,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K1", "location identifier": "K1", @@ -29372,6 +29367,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29379,14 +29379,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", "device control aggregate document": { "device control document": [ { @@ -29403,6 +29397,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K2", "location identifier": "K2", @@ -29419,6 +29414,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29426,14 +29426,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", "device control aggregate document": { "device control document": [ { @@ -29450,6 +29444,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K3", "location identifier": "K3", @@ -29466,6 +29461,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29473,14 +29473,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", "device control aggregate document": { "device control document": [ { @@ -29497,6 +29491,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K4", "location identifier": "K4", @@ -29513,6 +29508,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29520,14 +29520,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", "device control aggregate document": { "device control document": [ { @@ -29544,6 +29538,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K5", "location identifier": "K5", @@ -29560,6 +29555,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29567,14 +29567,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", "device control aggregate document": { "device control document": [ { @@ -29591,6 +29585,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K6", "location identifier": "K6", @@ -29607,6 +29602,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29614,14 +29614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", "device control aggregate document": { "device control document": [ { @@ -29638,6 +29632,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K7", "location identifier": "K7", @@ -29654,6 +29649,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29661,14 +29661,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", "device control aggregate document": { "device control document": [ { @@ -29685,6 +29679,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K8", "location identifier": "K8", @@ -29701,6 +29696,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29708,14 +29708,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", "device control aggregate document": { "device control document": [ { @@ -29732,6 +29726,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K9", "location identifier": "K9", @@ -29748,6 +29743,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29755,14 +29755,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", "device control aggregate document": { "device control document": [ { @@ -29779,6 +29773,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K10", "location identifier": "K10", @@ -29795,6 +29790,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29802,14 +29802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", "device control aggregate document": { "device control document": [ { @@ -29826,6 +29820,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K11", "location identifier": "K11", @@ -29842,6 +29837,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29849,14 +29849,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", "device control aggregate document": { "device control document": [ { @@ -29873,6 +29867,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K12", "location identifier": "K12", @@ -29889,6 +29884,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29896,14 +29896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", "device control aggregate document": { "device control document": [ { @@ -29920,6 +29914,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K13", "location identifier": "K13", @@ -29936,6 +29931,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29943,14 +29943,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", "device control aggregate document": { "device control document": [ { @@ -29967,6 +29961,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K14", "location identifier": "K14", @@ -29983,6 +29978,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -29990,14 +29990,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", "device control aggregate document": { "device control document": [ { @@ -30014,6 +30008,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K15", "location identifier": "K15", @@ -30030,6 +30025,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30037,14 +30037,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", "device control aggregate document": { "device control document": [ { @@ -30061,6 +30055,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K16", "location identifier": "K16", @@ -30077,6 +30072,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30084,14 +30084,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", "device control aggregate document": { "device control document": [ { @@ -30108,6 +30102,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K17", "location identifier": "K17", @@ -30124,6 +30119,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30131,14 +30131,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", "device control aggregate document": { "device control document": [ { @@ -30155,6 +30149,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K18", "location identifier": "K18", @@ -30171,6 +30166,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30178,14 +30178,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", "device control aggregate document": { "device control document": [ { @@ -30202,6 +30196,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K19", "location identifier": "K19", @@ -30218,6 +30213,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30225,14 +30225,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", "device control aggregate document": { "device control document": [ { @@ -30249,6 +30243,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K20", "location identifier": "K20", @@ -30265,6 +30260,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30272,14 +30272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", "device control aggregate document": { "device control document": [ { @@ -30296,6 +30290,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K21", "location identifier": "K21", @@ -30312,6 +30307,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30319,14 +30319,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", "device control aggregate document": { "device control document": [ { @@ -30343,6 +30337,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K22", "location identifier": "K22", @@ -30359,6 +30354,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30366,14 +30366,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", "device control aggregate document": { "device control document": [ { @@ -30390,6 +30384,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K23", "location identifier": "K23", @@ -30406,6 +30401,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30413,14 +30413,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", "device control aggregate document": { "device control document": [ { @@ -30437,6 +30431,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM K24", "location identifier": "K24", @@ -30453,6 +30448,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30460,14 +30460,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", "device control aggregate document": { "device control document": [ { @@ -30484,6 +30478,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L1", "location identifier": "L1", @@ -30500,6 +30495,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30507,14 +30507,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", "device control aggregate document": { "device control document": [ { @@ -30531,6 +30525,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L2", "location identifier": "L2", @@ -30547,6 +30542,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30554,14 +30554,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", "device control aggregate document": { "device control document": [ { @@ -30578,6 +30572,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L3", "location identifier": "L3", @@ -30594,6 +30589,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30601,14 +30601,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", "device control aggregate document": { "device control document": [ { @@ -30625,6 +30619,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L4", "location identifier": "L4", @@ -30641,6 +30636,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30648,14 +30648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", "device control aggregate document": { "device control document": [ { @@ -30672,6 +30666,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L5", "location identifier": "L5", @@ -30688,21 +30683,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", "device control aggregate document": { "device control document": [ { @@ -30719,6 +30713,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L6", "location identifier": "L6", @@ -30735,6 +30730,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30742,14 +30742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", "device control aggregate document": { "device control document": [ { @@ -30766,6 +30760,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L7", "location identifier": "L7", @@ -30782,6 +30777,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30789,14 +30789,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", "device control aggregate document": { "device control document": [ { @@ -30813,6 +30807,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L8", "location identifier": "L8", @@ -30829,6 +30824,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30836,14 +30836,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", "device control aggregate document": { "device control document": [ { @@ -30860,6 +30854,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L9", "location identifier": "L9", @@ -30876,6 +30871,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30883,14 +30883,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", "device control aggregate document": { "device control document": [ { @@ -30907,6 +30901,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L10", "location identifier": "L10", @@ -30923,6 +30918,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30930,14 +30930,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", "device control aggregate document": { "device control document": [ { @@ -30954,6 +30948,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L11", "location identifier": "L11", @@ -30970,6 +30965,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -30977,14 +30977,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", "device control aggregate document": { "device control document": [ { @@ -31001,6 +30995,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L12", "location identifier": "L12", @@ -31017,6 +31012,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31024,14 +31024,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", "device control aggregate document": { "device control document": [ { @@ -31048,6 +31042,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L13", "location identifier": "L13", @@ -31064,6 +31059,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31071,14 +31071,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", "device control aggregate document": { "device control document": [ { @@ -31095,6 +31089,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L14", "location identifier": "L14", @@ -31111,6 +31106,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31118,14 +31118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", "device control aggregate document": { "device control document": [ { @@ -31142,6 +31136,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L15", "location identifier": "L15", @@ -31158,6 +31153,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31165,14 +31165,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", "device control aggregate document": { "device control document": [ { @@ -31189,6 +31183,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L16", "location identifier": "L16", @@ -31205,6 +31200,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31212,14 +31212,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", "device control aggregate document": { "device control document": [ { @@ -31236,6 +31230,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L17", "location identifier": "L17", @@ -31252,6 +31247,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31259,14 +31259,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", "device control aggregate document": { "device control document": [ { @@ -31283,6 +31277,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L18", "location identifier": "L18", @@ -31299,6 +31294,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31306,14 +31306,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", "device control aggregate document": { "device control document": [ { @@ -31330,6 +31324,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L19", "location identifier": "L19", @@ -31346,6 +31341,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31353,14 +31353,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", "device control aggregate document": { "device control document": [ { @@ -31377,6 +31371,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L20", "location identifier": "L20", @@ -31393,6 +31388,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31400,14 +31400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", "device control aggregate document": { "device control document": [ { @@ -31424,6 +31418,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L21", "location identifier": "L21", @@ -31440,6 +31435,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31447,14 +31447,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", "device control aggregate document": { "device control document": [ { @@ -31471,6 +31465,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L22", "location identifier": "L22", @@ -31487,6 +31482,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31494,14 +31494,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", "device control aggregate document": { "device control document": [ { @@ -31518,6 +31512,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L23", "location identifier": "L23", @@ -31534,6 +31529,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31541,14 +31541,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", "device control aggregate document": { "device control document": [ { @@ -31565,6 +31559,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM L24", "location identifier": "L24", @@ -31581,6 +31576,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31588,14 +31588,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", "device control aggregate document": { "device control document": [ { @@ -31612,6 +31606,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M1", "location identifier": "M1", @@ -31628,6 +31623,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31635,14 +31635,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", "device control aggregate document": { "device control document": [ { @@ -31659,6 +31653,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M2", "location identifier": "M2", @@ -31675,6 +31670,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31682,14 +31682,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", "device control aggregate document": { "device control document": [ { @@ -31706,6 +31700,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M3", "location identifier": "M3", @@ -31722,6 +31717,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31729,14 +31729,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", "device control aggregate document": { "device control document": [ { @@ -31753,6 +31747,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M4", "location identifier": "M4", @@ -31769,6 +31764,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31776,14 +31776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", "device control aggregate document": { "device control document": [ { @@ -31800,6 +31794,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M5", "location identifier": "M5", @@ -31816,6 +31811,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31823,14 +31823,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", "device control aggregate document": { "device control document": [ { @@ -31847,6 +31841,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M6", "location identifier": "M6", @@ -31863,6 +31858,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31870,14 +31870,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", "device control aggregate document": { "device control document": [ { @@ -31894,6 +31888,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M7", "location identifier": "M7", @@ -31910,6 +31905,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31917,14 +31917,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", "device control aggregate document": { "device control document": [ { @@ -31941,6 +31935,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M8", "location identifier": "M8", @@ -31957,6 +31952,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -31964,14 +31964,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", "device control aggregate document": { "device control document": [ { @@ -31988,6 +31982,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M9", "location identifier": "M9", @@ -32004,6 +31999,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32011,14 +32011,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", "device control aggregate document": { "device control document": [ { @@ -32035,6 +32029,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M10", "location identifier": "M10", @@ -32051,6 +32046,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32058,14 +32058,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", "device control aggregate document": { "device control document": [ { @@ -32082,6 +32076,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M11", "location identifier": "M11", @@ -32098,6 +32093,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32105,14 +32105,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", "device control aggregate document": { "device control document": [ { @@ -32129,6 +32123,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M12", "location identifier": "M12", @@ -32145,6 +32140,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32152,14 +32152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", "device control aggregate document": { "device control document": [ { @@ -32176,6 +32170,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M13", "location identifier": "M13", @@ -32192,6 +32187,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32199,14 +32199,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", "device control aggregate document": { "device control document": [ { @@ -32223,6 +32217,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M14", "location identifier": "M14", @@ -32239,6 +32234,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32246,14 +32246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", "device control aggregate document": { "device control document": [ { @@ -32270,6 +32264,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M15", "location identifier": "M15", @@ -32286,6 +32281,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32293,14 +32293,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", "device control aggregate document": { "device control document": [ { @@ -32317,6 +32311,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M16", "location identifier": "M16", @@ -32333,6 +32328,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32340,14 +32340,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", "device control aggregate document": { "device control document": [ { @@ -32364,6 +32358,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M17", "location identifier": "M17", @@ -32380,6 +32375,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32387,14 +32387,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", "device control aggregate document": { "device control document": [ { @@ -32411,6 +32405,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M18", "location identifier": "M18", @@ -32427,6 +32422,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32434,14 +32434,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", "device control aggregate document": { "device control document": [ { @@ -32458,6 +32452,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M19", "location identifier": "M19", @@ -32474,6 +32469,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32481,14 +32481,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", "device control aggregate document": { "device control document": [ { @@ -32505,6 +32499,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M20", "location identifier": "M20", @@ -32521,6 +32516,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32528,14 +32528,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", "device control aggregate document": { "device control document": [ { @@ -32552,6 +32546,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M21", "location identifier": "M21", @@ -32568,6 +32563,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32575,14 +32575,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", "device control aggregate document": { "device control document": [ { @@ -32599,6 +32593,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M22", "location identifier": "M22", @@ -32615,6 +32610,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32622,14 +32622,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", "device control aggregate document": { "device control document": [ { @@ -32646,6 +32640,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M23", "location identifier": "M23", @@ -32662,6 +32657,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32669,14 +32669,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", "device control aggregate document": { "device control document": [ { @@ -32693,6 +32687,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM M24", "location identifier": "M24", @@ -32709,6 +32704,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32716,14 +32716,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", "device control aggregate document": { "device control document": [ { @@ -32740,6 +32734,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N1", "location identifier": "N1", @@ -32756,6 +32751,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32763,14 +32763,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", "device control aggregate document": { "device control document": [ { @@ -32787,6 +32781,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N2", "location identifier": "N2", @@ -32803,6 +32798,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32810,14 +32810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", "device control aggregate document": { "device control document": [ { @@ -32834,6 +32828,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N3", "location identifier": "N3", @@ -32850,6 +32845,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32857,14 +32857,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", "device control aggregate document": { "device control document": [ { @@ -32881,6 +32875,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N4", "location identifier": "N4", @@ -32897,6 +32892,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32904,14 +32904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", "device control aggregate document": { "device control document": [ { @@ -32928,6 +32922,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N5", "location identifier": "N5", @@ -32944,6 +32939,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32951,14 +32951,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", "device control aggregate document": { "device control document": [ { @@ -32975,6 +32969,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N6", "location identifier": "N6", @@ -32991,6 +32986,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -32998,14 +32998,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", "device control aggregate document": { "device control document": [ { @@ -33022,6 +33016,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N7", "location identifier": "N7", @@ -33038,6 +33033,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33045,14 +33045,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", "device control aggregate document": { "device control document": [ { @@ -33069,6 +33063,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N8", "location identifier": "N8", @@ -33085,6 +33080,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33092,14 +33092,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", "device control aggregate document": { "device control document": [ { @@ -33116,6 +33110,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N9", "location identifier": "N9", @@ -33132,6 +33127,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33139,14 +33139,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", "device control aggregate document": { "device control document": [ { @@ -33163,6 +33157,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N10", "location identifier": "N10", @@ -33179,6 +33174,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33186,14 +33186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", "device control aggregate document": { "device control document": [ { @@ -33210,6 +33204,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N11", "location identifier": "N11", @@ -33226,6 +33221,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33233,14 +33233,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", "device control aggregate document": { "device control document": [ { @@ -33257,6 +33251,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N12", "location identifier": "N12", @@ -33273,6 +33268,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33280,14 +33280,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", "device control aggregate document": { "device control document": [ { @@ -33304,6 +33298,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N13", "location identifier": "N13", @@ -33320,6 +33315,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33327,14 +33327,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", "device control aggregate document": { "device control document": [ { @@ -33351,6 +33345,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N14", "location identifier": "N14", @@ -33367,6 +33362,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33374,14 +33374,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", "device control aggregate document": { "device control document": [ { @@ -33398,6 +33392,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N15", "location identifier": "N15", @@ -33414,6 +33409,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33421,14 +33421,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", "device control aggregate document": { "device control document": [ { @@ -33445,6 +33439,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N16", "location identifier": "N16", @@ -33461,6 +33456,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33468,14 +33468,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", "device control aggregate document": { "device control document": [ { @@ -33492,6 +33486,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N17", "location identifier": "N17", @@ -33508,6 +33503,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33515,14 +33515,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", "device control aggregate document": { "device control document": [ { @@ -33539,6 +33533,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N18", "location identifier": "N18", @@ -33555,6 +33550,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33562,14 +33562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", "device control aggregate document": { "device control document": [ { @@ -33586,6 +33580,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N19", "location identifier": "N19", @@ -33602,6 +33597,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33609,14 +33609,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", "device control aggregate document": { "device control document": [ { @@ -33633,6 +33627,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N20", "location identifier": "N20", @@ -33649,6 +33644,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33656,14 +33656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", "device control aggregate document": { "device control document": [ { @@ -33680,6 +33674,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N21", "location identifier": "N21", @@ -33696,6 +33691,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33703,14 +33703,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", "device control aggregate document": { "device control document": [ { @@ -33727,6 +33721,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N22", "location identifier": "N22", @@ -33743,6 +33738,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33750,14 +33750,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", "device control aggregate document": { "device control document": [ { @@ -33774,6 +33768,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N23", "location identifier": "N23", @@ -33790,6 +33785,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33797,14 +33797,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", "device control aggregate document": { "device control document": [ { @@ -33821,6 +33815,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM N24", "location identifier": "N24", @@ -33837,6 +33832,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33844,14 +33844,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", "device control aggregate document": { "device control document": [ { @@ -33868,6 +33862,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O1", "location identifier": "O1", @@ -33884,6 +33879,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33891,14 +33891,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", "device control aggregate document": { "device control document": [ { @@ -33915,6 +33909,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O2", "location identifier": "O2", @@ -33931,6 +33926,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33938,14 +33938,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", "device control aggregate document": { "device control document": [ { @@ -33962,6 +33956,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O3", "location identifier": "O3", @@ -33978,6 +33973,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -33985,14 +33985,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", "device control aggregate document": { "device control document": [ { @@ -34009,6 +34003,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O4", "location identifier": "O4", @@ -34025,6 +34020,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34032,14 +34032,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", "device control aggregate document": { "device control document": [ { @@ -34056,6 +34050,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O5", "location identifier": "O5", @@ -34072,6 +34067,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34079,14 +34079,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", "device control aggregate document": { "device control document": [ { @@ -34103,6 +34097,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O6", "location identifier": "O6", @@ -34119,6 +34114,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34126,14 +34126,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", "device control aggregate document": { "device control document": [ { @@ -34150,6 +34144,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O7", "location identifier": "O7", @@ -34166,6 +34161,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34173,14 +34173,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", "device control aggregate document": { "device control document": [ { @@ -34197,6 +34191,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O8", "location identifier": "O8", @@ -34213,6 +34208,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34220,14 +34220,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", "device control aggregate document": { "device control document": [ { @@ -34244,6 +34238,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O9", "location identifier": "O9", @@ -34260,6 +34255,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34267,14 +34267,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", "device control aggregate document": { "device control document": [ { @@ -34291,6 +34285,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O10", "location identifier": "O10", @@ -34307,6 +34302,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34314,14 +34314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", "device control aggregate document": { "device control document": [ { @@ -34338,6 +34332,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O11", "location identifier": "O11", @@ -34354,6 +34349,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34361,14 +34361,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", "device control aggregate document": { "device control document": [ { @@ -34385,6 +34379,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O12", "location identifier": "O12", @@ -34401,6 +34396,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34408,14 +34408,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", "device control aggregate document": { "device control document": [ { @@ -34432,6 +34426,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O13", "location identifier": "O13", @@ -34448,6 +34443,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34455,14 +34455,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", "device control aggregate document": { "device control document": [ { @@ -34479,6 +34473,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O14", "location identifier": "O14", @@ -34495,6 +34490,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34502,14 +34502,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", "device control aggregate document": { "device control document": [ { @@ -34526,6 +34520,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O15", "location identifier": "O15", @@ -34542,6 +34537,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34549,14 +34549,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", "device control aggregate document": { "device control document": [ { @@ -34573,6 +34567,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O16", "location identifier": "O16", @@ -34589,6 +34584,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34596,14 +34596,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", "device control aggregate document": { "device control document": [ { @@ -34620,6 +34614,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O17", "location identifier": "O17", @@ -34636,6 +34631,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34643,14 +34643,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", "device control aggregate document": { "device control document": [ { @@ -34667,6 +34661,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O18", "location identifier": "O18", @@ -34683,21 +34678,20 @@ } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2899", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:57:03+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2899", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", "device control aggregate document": { "device control document": [ { @@ -34714,6 +34708,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O19", "location identifier": "O19", @@ -34730,6 +34725,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34737,14 +34737,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", "device control aggregate document": { "device control document": [ { @@ -34761,6 +34755,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O20", "location identifier": "O20", @@ -34777,6 +34772,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34784,14 +34784,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", "device control aggregate document": { "device control document": [ { @@ -34808,6 +34802,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O21", "location identifier": "O21", @@ -34824,6 +34819,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34831,14 +34831,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", "device control aggregate document": { "device control document": [ { @@ -34855,6 +34849,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O22", "location identifier": "O22", @@ -34871,6 +34866,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34878,14 +34878,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", "device control aggregate document": { "device control document": [ { @@ -34902,6 +34896,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O23", "location identifier": "O23", @@ -34918,6 +34913,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34925,14 +34925,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", "device control aggregate document": { "device control document": [ { @@ -34949,6 +34943,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM O24", "location identifier": "O24", @@ -34965,6 +34960,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -34972,14 +34972,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", "device control aggregate document": { "device control document": [ { @@ -34996,6 +34990,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P1", "location identifier": "P1", @@ -35012,6 +35007,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35019,14 +35019,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", "device control aggregate document": { "device control document": [ { @@ -35043,6 +35037,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P2", "location identifier": "P2", @@ -35059,6 +35054,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35066,14 +35066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", "device control aggregate document": { "device control document": [ { @@ -35090,6 +35084,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P3", "location identifier": "P3", @@ -35106,6 +35101,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35113,14 +35113,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", "device control aggregate document": { "device control document": [ { @@ -35137,6 +35131,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P4", "location identifier": "P4", @@ -35153,6 +35148,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35160,14 +35160,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", "device control aggregate document": { "device control document": [ { @@ -35184,6 +35178,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P5", "location identifier": "P5", @@ -35200,6 +35195,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35207,14 +35207,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", "device control aggregate document": { "device control document": [ { @@ -35231,6 +35225,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P6", "location identifier": "P6", @@ -35247,6 +35242,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35254,14 +35254,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", "device control aggregate document": { "device control document": [ { @@ -35278,6 +35272,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P7", "location identifier": "P7", @@ -35294,6 +35289,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35301,14 +35301,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", "device control aggregate document": { "device control document": [ { @@ -35325,6 +35319,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P8", "location identifier": "P8", @@ -35341,6 +35336,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35348,14 +35348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", "device control aggregate document": { "device control document": [ { @@ -35372,6 +35366,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P9", "location identifier": "P9", @@ -35388,6 +35383,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35395,14 +35395,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", "device control aggregate document": { "device control document": [ { @@ -35419,6 +35413,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P10", "location identifier": "P10", @@ -35435,6 +35430,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35442,14 +35442,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", "device control aggregate document": { "device control document": [ { @@ -35466,6 +35460,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P11", "location identifier": "P11", @@ -35482,6 +35477,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35489,14 +35489,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", "device control aggregate document": { "device control document": [ { @@ -35513,6 +35507,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P12", "location identifier": "P12", @@ -35529,6 +35524,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35536,14 +35536,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", "device control aggregate document": { "device control document": [ { @@ -35560,6 +35554,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P13", "location identifier": "P13", @@ -35576,6 +35571,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35583,14 +35583,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", "device control aggregate document": { "device control document": [ { @@ -35607,6 +35601,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P14", "location identifier": "P14", @@ -35623,6 +35618,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35630,14 +35630,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", "device control aggregate document": { "device control document": [ { @@ -35654,6 +35648,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P15", "location identifier": "P15", @@ -35670,6 +35665,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35677,14 +35677,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", "device control aggregate document": { "device control document": [ { @@ -35701,6 +35695,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P16", "location identifier": "P16", @@ -35717,6 +35712,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35724,14 +35724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", "device control aggregate document": { "device control document": [ { @@ -35748,6 +35742,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P17", "location identifier": "P17", @@ -35764,6 +35759,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35771,14 +35771,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", "device control aggregate document": { "device control document": [ { @@ -35795,6 +35789,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P18", "location identifier": "P18", @@ -35811,6 +35806,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35818,14 +35818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", "device control aggregate document": { "device control document": [ { @@ -35842,6 +35836,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P19", "location identifier": "P19", @@ -35858,6 +35853,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35865,14 +35865,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", "device control aggregate document": { "device control document": [ { @@ -35889,6 +35883,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P20", "location identifier": "P20", @@ -35905,6 +35900,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35912,14 +35912,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", "device control aggregate document": { "device control document": [ { @@ -35936,6 +35930,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P21", "location identifier": "P21", @@ -35952,6 +35947,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -35959,14 +35959,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", "device control aggregate document": { "device control document": [ { @@ -35983,6 +35977,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P22", "location identifier": "P22", @@ -35999,6 +35994,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -36006,14 +36006,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", "device control aggregate document": { "device control document": [ { @@ -36030,6 +36024,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P23", "location identifier": "P23", @@ -36046,6 +36041,11 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" @@ -36053,14 +36053,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:57:03+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", "device control aggregate document": { "device control document": [ { @@ -36077,6 +36071,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", "sample document": { "sample identifier": "8/22/2023 10:57:39 AM P24", "location identifier": "P24", @@ -36093,27 +36088,17 @@ } } ], + "measurement time": "2023-08-22T10:57:03+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2899", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision#Alpha_680nm", - "model number": "EnVision", - "equipment serial number": "1051017" - }, - "data system document": { - "file name": "PE_Envision_absorbance_example01.csv", - "ASM file identifier": "N/A", - "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.14.3049.1193", - "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -36122,6 +36107,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36129,9 +36116,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36139,6 +36124,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36146,9 +36133,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36156,6 +36141,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36163,9 +36150,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36173,6 +36158,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36180,9 +36167,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36190,6 +36175,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36197,9 +36184,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36207,6 +36192,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36214,9 +36201,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36224,6 +36209,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36231,9 +36218,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36241,6 +36226,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36248,9 +36235,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36258,6 +36243,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36265,9 +36252,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36275,6 +36260,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36282,9 +36269,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36292,6 +36277,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36299,9 +36286,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36309,6 +36294,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36316,9 +36303,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36326,6 +36311,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36333,9 +36320,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36343,6 +36328,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36350,9 +36337,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36360,6 +36345,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36367,9 +36354,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36377,6 +36362,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36384,9 +36371,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36394,6 +36379,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36401,9 +36388,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36411,6 +36396,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36418,9 +36405,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36428,6 +36413,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36435,9 +36422,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36445,6 +36430,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36452,9 +36439,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36462,6 +36447,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36469,9 +36456,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36479,6 +36464,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36486,9 +36473,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36496,6 +36481,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36503,9 +36490,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36513,6 +36498,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36520,9 +36507,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36530,6 +36515,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36537,9 +36524,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36547,6 +36532,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36554,9 +36541,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36564,6 +36549,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36571,9 +36558,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36581,6 +36566,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36588,9 +36575,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36598,6 +36583,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36605,9 +36592,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36615,6 +36600,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36622,9 +36609,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36632,6 +36617,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36639,9 +36626,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36649,6 +36634,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36656,9 +36643,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36666,6 +36651,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36673,9 +36660,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36683,6 +36668,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36690,9 +36677,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36700,6 +36685,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36707,9 +36694,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36717,6 +36702,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36724,9 +36711,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36734,6 +36719,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36741,9 +36728,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36751,6 +36736,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36758,9 +36745,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36768,6 +36753,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36775,9 +36762,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36785,6 +36770,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36792,9 +36779,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36802,6 +36787,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36809,9 +36796,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36819,6 +36804,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36826,9 +36813,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36836,6 +36821,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36843,9 +36830,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36853,6 +36838,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36860,9 +36847,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36870,6 +36855,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36877,9 +36864,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36887,6 +36872,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36894,9 +36881,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36904,16 +36889,16 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", "data source feature": "Absorbance" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36921,6 +36906,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36928,9 +36915,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36938,6 +36923,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36945,9 +36932,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36955,6 +36940,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36962,9 +36949,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36972,6 +36957,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36979,9 +36966,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36989,6 +36974,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36996,9 +36983,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37006,6 +36991,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37013,9 +37000,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37023,6 +37008,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37030,9 +37017,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37040,6 +37025,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37047,9 +37034,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37057,6 +37042,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37064,9 +37051,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37074,6 +37059,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37081,9 +37068,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37091,6 +37076,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37098,9 +37085,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37108,6 +37093,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37115,9 +37102,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37125,6 +37110,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37132,9 +37119,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37142,6 +37127,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37149,9 +37136,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37159,6 +37144,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37166,9 +37153,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37176,6 +37161,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37183,9 +37170,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37193,6 +37178,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37200,9 +37187,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37210,6 +37195,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37217,9 +37204,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37227,6 +37212,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37234,9 +37221,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37244,6 +37229,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37251,9 +37238,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37261,6 +37246,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37268,9 +37255,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37278,6 +37263,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37285,9 +37272,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37295,6 +37280,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37302,9 +37289,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37312,6 +37297,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37319,9 +37306,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37329,6 +37314,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37336,9 +37323,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37346,6 +37331,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37353,9 +37340,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37363,6 +37348,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37370,9 +37357,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37380,6 +37365,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37387,9 +37374,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37397,6 +37382,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37404,9 +37391,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37414,6 +37399,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37421,9 +37408,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37431,6 +37416,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37438,9 +37425,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37448,6 +37433,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37455,9 +37442,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37465,6 +37450,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37472,9 +37459,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37482,6 +37467,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37489,9 +37476,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37499,6 +37484,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37506,9 +37493,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37516,6 +37501,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37523,9 +37510,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37533,6 +37518,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37540,9 +37527,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37550,6 +37535,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37557,9 +37544,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37567,6 +37552,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37574,9 +37561,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37584,6 +37569,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37591,9 +37578,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37601,6 +37586,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37608,9 +37595,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37618,6 +37603,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37625,9 +37612,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37635,6 +37620,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37642,9 +37629,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37652,6 +37637,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37659,9 +37646,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37669,6 +37654,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37676,9 +37663,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37686,6 +37671,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37693,9 +37680,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37703,6 +37688,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37710,9 +37697,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37720,6 +37705,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37727,9 +37714,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37737,6 +37722,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37744,9 +37731,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37754,6 +37739,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37761,9 +37748,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37771,6 +37756,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37778,9 +37765,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37788,6 +37773,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37795,9 +37782,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37805,6 +37790,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37812,9 +37799,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37822,6 +37807,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37829,9 +37816,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37839,6 +37824,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37846,9 +37833,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37856,6 +37841,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37863,9 +37850,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37873,6 +37858,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37880,9 +37867,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37890,6 +37875,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37897,9 +37884,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37907,6 +37892,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37914,9 +37901,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37924,6 +37909,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37931,9 +37918,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37941,6 +37926,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37948,9 +37935,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37958,6 +37943,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37965,9 +37952,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37975,6 +37960,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37982,9 +37969,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37992,6 +37977,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37999,9 +37986,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38009,6 +37994,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38016,9 +38003,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38026,6 +38011,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38033,9 +38020,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38043,6 +38028,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38050,9 +38037,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38060,6 +38045,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38067,9 +38054,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38077,6 +38062,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38084,9 +38071,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38094,6 +38079,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38101,9 +38088,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38111,6 +38096,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38118,9 +38105,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38128,6 +38113,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38135,9 +38122,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38145,6 +38130,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38152,9 +38139,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38162,6 +38147,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38169,9 +38156,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38179,6 +38164,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38186,9 +38173,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38196,6 +38181,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38203,9 +38190,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38213,6 +38198,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38220,9 +38207,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38230,6 +38215,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38237,9 +38224,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38247,6 +38232,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38254,9 +38241,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38264,6 +38249,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38271,9 +38258,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38281,6 +38266,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38288,9 +38275,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38298,6 +38283,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38305,9 +38292,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38315,6 +38300,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38322,9 +38309,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38332,6 +38317,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38339,9 +38326,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38349,6 +38334,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38356,9 +38343,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38366,6 +38351,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38373,9 +38360,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38383,6 +38368,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38390,9 +38377,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38400,6 +38385,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38407,9 +38394,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38417,6 +38402,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38424,9 +38411,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38434,6 +38419,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38441,9 +38428,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38451,6 +38436,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38458,9 +38445,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38468,6 +38453,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38475,9 +38462,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38485,6 +38470,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38492,9 +38479,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38502,6 +38487,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38509,9 +38496,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38519,6 +38504,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38526,9 +38513,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38536,6 +38521,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38543,9 +38530,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38553,6 +38538,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38560,9 +38547,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38570,6 +38555,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38577,9 +38564,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38587,6 +38572,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38594,9 +38581,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38604,6 +38589,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38611,9 +38598,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38621,6 +38606,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38628,9 +38615,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38638,6 +38623,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38645,9 +38632,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38655,6 +38640,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38662,9 +38649,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38672,6 +38657,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38679,9 +38666,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38689,6 +38674,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38696,9 +38683,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38706,6 +38691,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38713,9 +38700,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38723,6 +38708,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38730,9 +38717,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38740,6 +38725,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38747,9 +38734,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38757,6 +38742,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38764,9 +38751,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38774,6 +38759,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38781,9 +38768,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38791,6 +38776,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38798,9 +38785,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38808,6 +38793,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38815,9 +38802,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38825,6 +38810,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38832,9 +38819,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38842,6 +38827,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38849,9 +38836,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38859,6 +38844,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38866,9 +38853,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38876,6 +38861,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38883,9 +38870,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38893,6 +38878,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38900,9 +38887,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38910,6 +38895,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38917,9 +38904,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38927,6 +38912,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38934,9 +38921,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38944,6 +38929,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38951,9 +38938,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38961,6 +38946,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38968,9 +38955,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38978,6 +38963,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38985,9 +38972,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38995,6 +38980,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39002,9 +38989,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39012,6 +38997,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39019,9 +39006,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39029,6 +39014,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39036,9 +39023,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39046,6 +39031,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39053,9 +39040,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39063,6 +39048,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39070,9 +39057,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39080,6 +39065,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39087,9 +39074,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39097,6 +39082,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39104,9 +39091,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39114,6 +39099,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39121,9 +39108,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39131,6 +39116,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39138,9 +39125,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39148,6 +39133,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39155,9 +39142,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39165,6 +39150,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39172,9 +39159,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39182,6 +39167,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39189,9 +39176,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39199,6 +39184,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39206,9 +39193,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39216,6 +39201,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39223,9 +39210,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39233,6 +39218,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39240,9 +39227,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39250,6 +39235,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39257,9 +39244,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39267,6 +39252,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39274,9 +39261,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39284,6 +39269,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39291,9 +39278,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39301,6 +39286,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39308,9 +39295,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39318,6 +39303,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39325,9 +39312,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39335,6 +39320,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39342,9 +39329,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39352,6 +39337,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39359,9 +39346,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39369,6 +39354,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39376,9 +39363,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39386,6 +39371,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39393,9 +39380,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39403,6 +39388,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39410,9 +39397,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39420,6 +39405,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39427,9 +39414,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39437,6 +39422,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39444,9 +39431,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39454,6 +39439,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39461,9 +39448,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39471,6 +39456,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39478,9 +39465,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39488,6 +39473,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39495,9 +39482,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39505,6 +39490,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39512,9 +39499,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39522,6 +39507,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39529,9 +39516,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39539,6 +39524,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39546,9 +39533,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39556,6 +39541,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39563,9 +39550,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39573,6 +39558,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39580,9 +39567,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39590,6 +39575,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39597,9 +39584,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39607,6 +39592,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39614,9 +39601,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39624,6 +39609,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39631,9 +39618,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39641,6 +39626,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39648,9 +39635,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39658,6 +39643,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39665,9 +39652,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39675,6 +39660,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39682,9 +39669,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39692,6 +39677,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39699,9 +39686,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39709,6 +39694,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39716,9 +39703,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39726,6 +39711,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39733,9 +39720,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39743,6 +39728,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39750,9 +39737,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39760,6 +39745,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39767,9 +39754,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39777,6 +39762,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39784,9 +39771,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39794,6 +39779,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39801,9 +39788,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39811,6 +39796,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39818,9 +39805,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39828,6 +39813,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39835,9 +39822,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39845,6 +39830,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39852,9 +39839,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39862,6 +39847,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39869,9 +39856,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39879,6 +39864,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39886,9 +39873,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39896,6 +39881,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39903,9 +39890,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39913,6 +39898,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39920,9 +39907,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39930,6 +39915,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39937,9 +39924,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39947,6 +39932,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39954,9 +39941,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39964,6 +39949,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39971,9 +39958,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39981,6 +39966,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39988,9 +39975,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39998,6 +39983,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40005,9 +39992,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40015,6 +40000,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40022,9 +40009,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40032,6 +40017,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40039,9 +40026,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40049,6 +40034,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40056,9 +40043,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40066,6 +40051,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40073,9 +40060,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40083,6 +40068,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40090,9 +40077,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40100,6 +40085,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40107,9 +40094,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40117,6 +40102,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40124,9 +40111,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40134,6 +40119,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40141,9 +40128,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40151,6 +40136,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40158,9 +40145,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40168,6 +40153,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40175,9 +40162,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40185,6 +40170,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40192,9 +40179,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40202,6 +40187,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40209,9 +40196,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40219,6 +40204,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40226,9 +40213,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40236,6 +40221,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40243,9 +40230,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40253,6 +40238,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40260,9 +40247,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40270,6 +40255,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40277,9 +40264,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40287,6 +40272,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40294,9 +40281,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40304,6 +40289,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40311,9 +40298,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40321,6 +40306,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40328,9 +40315,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40338,6 +40323,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40345,9 +40332,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40355,6 +40340,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40362,9 +40349,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40372,6 +40357,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40379,9 +40366,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40389,6 +40374,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40396,9 +40383,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40406,6 +40391,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40413,9 +40400,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40423,6 +40408,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40430,9 +40417,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40440,6 +40425,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40447,9 +40434,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40457,6 +40442,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40464,9 +40451,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40474,6 +40459,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40481,9 +40468,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40491,6 +40476,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40498,9 +40485,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40508,6 +40493,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40515,9 +40502,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40525,6 +40510,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40532,9 +40519,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40542,6 +40527,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40549,9 +40536,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40559,6 +40544,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40566,9 +40553,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40576,6 +40561,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40583,9 +40570,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40593,6 +40578,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40600,9 +40587,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40610,6 +40595,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40617,9 +40604,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40627,6 +40612,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40634,9 +40621,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40644,6 +40629,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40651,9 +40638,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40661,6 +40646,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40668,9 +40655,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40678,6 +40663,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40685,9 +40672,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40695,6 +40680,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40702,9 +40689,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40712,6 +40697,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40719,9 +40706,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40729,6 +40714,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40736,9 +40723,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40746,6 +40731,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40753,9 +40740,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40763,6 +40748,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40770,9 +40757,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40780,6 +40765,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40787,9 +40774,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40797,6 +40782,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40804,9 +40791,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40814,6 +40799,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40821,9 +40808,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40831,6 +40816,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40838,9 +40825,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40848,6 +40833,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40855,9 +40842,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40865,6 +40850,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40872,9 +40859,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40882,6 +40867,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40889,9 +40876,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40899,6 +40884,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40906,9 +40893,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40916,6 +40901,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40923,9 +40910,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40933,6 +40918,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40940,9 +40927,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40950,6 +40935,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40957,9 +40944,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40967,6 +40952,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40974,9 +40961,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40984,6 +40969,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40991,9 +40978,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41001,6 +40986,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41008,9 +40995,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41018,6 +41003,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41025,9 +41012,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41035,6 +41020,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41042,9 +41029,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41052,6 +41037,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41059,9 +41046,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41069,6 +41054,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41076,9 +41063,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41086,6 +41071,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41093,9 +41080,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41103,6 +41088,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41110,9 +41097,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41120,6 +41105,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41127,9 +41114,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41137,6 +41122,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41144,9 +41131,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41154,6 +41139,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41161,9 +41148,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41171,6 +41156,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41178,9 +41165,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41188,6 +41173,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41195,9 +41182,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41205,6 +41190,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41212,9 +41199,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41222,6 +41207,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41229,9 +41216,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41239,6 +41224,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41246,9 +41233,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41256,6 +41241,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41263,9 +41250,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41273,6 +41258,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41280,9 +41267,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41290,6 +41275,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41297,9 +41284,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41307,6 +41292,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41314,9 +41301,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41324,6 +41309,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41331,9 +41318,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41341,6 +41326,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41348,9 +41335,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41358,6 +41343,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41365,9 +41352,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41375,6 +41360,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41382,9 +41369,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41392,6 +41377,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41399,9 +41386,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41409,6 +41394,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41416,9 +41403,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41426,6 +41411,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41433,9 +41420,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41443,6 +41428,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41450,9 +41437,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41460,6 +41445,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41467,9 +41454,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41477,6 +41462,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41484,9 +41471,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41494,6 +41479,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41501,9 +41488,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41511,6 +41496,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41518,9 +41505,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41528,6 +41513,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41535,9 +41522,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41545,6 +41530,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41552,9 +41539,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41562,6 +41547,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41569,9 +41556,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41579,6 +41564,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41586,9 +41573,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41596,6 +41581,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41603,9 +41590,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41613,6 +41598,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41620,9 +41607,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41630,6 +41615,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41637,9 +41624,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41647,6 +41632,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41654,9 +41641,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41664,6 +41649,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41671,9 +41658,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41681,6 +41666,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41688,9 +41675,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41698,6 +41683,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41705,9 +41692,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41715,6 +41700,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41722,9 +41709,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41732,6 +41717,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41739,9 +41726,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41749,6 +41734,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41756,9 +41743,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41766,6 +41751,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41773,9 +41760,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41783,6 +41768,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41790,9 +41777,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41800,6 +41785,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41807,9 +41794,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41817,6 +41802,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41824,9 +41811,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41834,6 +41819,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41841,9 +41828,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41851,6 +41836,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41858,9 +41845,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41868,6 +41853,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41875,9 +41862,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41885,6 +41870,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41892,9 +41879,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41902,6 +41887,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41909,9 +41896,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41919,6 +41904,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41926,9 +41913,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41936,6 +41921,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41943,9 +41930,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41953,6 +41938,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41960,9 +41947,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41970,6 +41955,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41977,9 +41964,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41987,6 +41972,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41994,9 +41981,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42004,6 +41989,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42011,9 +41998,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42021,6 +42006,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42028,9 +42015,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42038,6 +42023,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42045,9 +42032,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42055,6 +42040,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42062,9 +42049,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42072,6 +42057,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42079,9 +42066,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42089,6 +42074,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42096,9 +42083,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42106,6 +42091,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42113,9 +42100,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42123,6 +42108,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42130,9 +42117,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42140,6 +42125,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42147,9 +42134,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42157,6 +42142,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42164,9 +42151,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42174,6 +42159,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42181,9 +42168,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42191,6 +42176,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42198,9 +42185,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42208,6 +42193,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42215,9 +42202,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42225,6 +42210,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42232,9 +42219,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42242,6 +42227,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42249,9 +42236,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42259,6 +42244,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42266,9 +42253,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42276,6 +42261,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42283,9 +42270,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42293,6 +42278,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42300,9 +42287,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42310,6 +42295,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42317,9 +42304,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42327,6 +42312,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42334,9 +42321,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42344,6 +42329,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42351,9 +42338,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42361,6 +42346,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42368,9 +42355,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42378,6 +42363,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42385,9 +42372,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42395,6 +42380,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42402,9 +42389,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42412,6 +42397,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42419,9 +42406,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42429,6 +42414,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42436,9 +42423,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42446,6 +42431,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42453,9 +42440,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42463,6 +42448,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42470,9 +42457,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42480,6 +42465,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42487,9 +42474,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42497,6 +42482,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42504,9 +42491,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42514,6 +42499,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42521,9 +42508,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42531,6 +42516,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42538,9 +42525,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42548,6 +42533,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42555,9 +42542,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42565,6 +42550,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42572,9 +42559,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42582,6 +42567,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42589,9 +42576,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42599,6 +42584,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42606,9 +42593,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42616,6 +42601,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42623,9 +42610,7 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42633,6 +42618,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42640,11 +42627,24 @@ "data source feature": "Absorbance" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : Screen 384 OptiPlate(1) channel 1" + } } ] + }, + "data system document": { + "ASM file identifier": "PE_Envision_absorbance_example01.json", + "data system instance identifier": "N/A", + "file name": "PE_Envision_absorbance_example01.csv", + "UNC path": "N/A", + "ASM converter name": "allotropy_perkinelmer_envision", + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.14.3049.1193" + }, + "device system document": { + "device identifier": "EnVision#Alpha_680nm", + "model number": "EnVision", + "equipment serial number": "1051017" } } } diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json index 1baf8e3dd..cd8787acd 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example01.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -45,23 +39,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "sample document": { "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 31441, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31441, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -95,22 +89,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "sample document": { "sample identifier": "Plate 1 A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80368, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80368, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -118,14 +118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -159,23 +153,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "sample document": { "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 31278, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31278, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -209,22 +203,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "sample document": { "sample identifier": "Plate 1 A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 79711, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 79711, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -232,14 +232,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -273,23 +267,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "sample document": { "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 31727, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31727, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -323,22 +317,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "sample document": { "sample identifier": "Plate 1 A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80353, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80353, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -346,14 +346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -387,23 +381,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "sample document": { "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 32350, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32350, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "device control aggregate document": { "device control document": [ { @@ -437,22 +431,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "sample document": { "sample identifier": "Plate 1 A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82252, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82252, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -460,14 +460,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -501,23 +495,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "sample document": { "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 32415, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32415, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "device control aggregate document": { "device control document": [ { @@ -551,22 +545,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "sample document": { "sample identifier": "Plate 1 A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 79802, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 79802, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -574,14 +574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -615,23 +609,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "sample document": { "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 32847, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32847, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "device control aggregate document": { "device control document": [ { @@ -665,22 +659,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "sample document": { "sample identifier": "Plate 1 A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82187, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82187, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -688,14 +688,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -729,23 +723,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "sample document": { "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 19603, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 19603, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "device control aggregate document": { "device control document": [ { @@ -779,22 +773,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "sample document": { "sample identifier": "Plate 1 B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82168, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82168, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -802,14 +802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -843,23 +837,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "sample document": { "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 19063, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 19063, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "device control aggregate document": { "device control document": [ { @@ -893,22 +887,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "sample document": { "sample identifier": "Plate 1 B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 79948, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 79948, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -916,14 +916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -957,23 +951,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "sample document": { "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 19621, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 19621, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "device control aggregate document": { "device control document": [ { @@ -1007,22 +1001,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "sample document": { "sample identifier": "Plate 1 B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81887, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81887, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1030,14 +1030,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -1071,23 +1065,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "sample document": { "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 19543, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 19543, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "device control aggregate document": { "device control document": [ { @@ -1121,22 +1115,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "sample document": { "sample identifier": "Plate 1 B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81749, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81749, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1144,14 +1144,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -1185,23 +1179,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "sample document": { "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 19799, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 19799, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "device control aggregate document": { "device control document": [ { @@ -1235,22 +1229,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "sample document": { "sample identifier": "Plate 1 B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82610, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82610, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1258,14 +1258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -1299,23 +1293,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "sample document": { "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 20087, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 20087, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "device control aggregate document": { "device control document": [ { @@ -1349,22 +1343,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "sample document": { "sample identifier": "Plate 1 B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82843, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82843, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1372,14 +1372,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -1413,23 +1407,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "sample document": { "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 12762, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 12762, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "device control aggregate document": { "device control document": [ { @@ -1463,22 +1457,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "sample document": { "sample identifier": "Plate 1 C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 85211, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 85211, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1486,14 +1486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -1527,23 +1521,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "sample document": { "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 12502, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 12502, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "device control aggregate document": { "device control document": [ { @@ -1577,22 +1571,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "sample document": { "sample identifier": "Plate 1 C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84002, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84002, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1600,14 +1600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -1641,23 +1635,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "sample document": { "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 12582, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 12582, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "device control aggregate document": { "device control document": [ { @@ -1691,22 +1685,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "sample document": { "sample identifier": "Plate 1 C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 85346, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 85346, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1714,14 +1714,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -1755,23 +1749,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "sample document": { "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 12842, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 12842, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "device control aggregate document": { "device control document": [ { @@ -1805,22 +1799,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "sample document": { "sample identifier": "Plate 1 C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84877, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84877, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1828,14 +1828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -1869,23 +1863,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "sample document": { "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 13071, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 13071, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "device control aggregate document": { "device control document": [ { @@ -1919,22 +1913,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "sample document": { "sample identifier": "Plate 1 C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 87871, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 87871, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -1942,14 +1942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -1983,23 +1977,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "sample document": { "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 12914, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 12914, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "device control aggregate document": { "device control document": [ { @@ -2033,22 +2027,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "sample document": { "sample identifier": "Plate 1 C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 87789, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 87789, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2056,14 +2056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -2097,23 +2091,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "sample document": { "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8153, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8153, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "device control aggregate document": { "device control document": [ { @@ -2147,22 +2141,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "sample document": { "sample identifier": "Plate 1 D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81127, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81127, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2170,14 +2170,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -2211,23 +2205,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "sample document": { "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8018, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8018, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "device control aggregate document": { "device control document": [ { @@ -2261,22 +2255,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "sample document": { "sample identifier": "Plate 1 D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80365, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80365, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2284,14 +2284,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -2325,23 +2319,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "sample document": { "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8093, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8093, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "device control aggregate document": { "device control document": [ { @@ -2375,22 +2369,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "sample document": { "sample identifier": "Plate 1 D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82166, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82166, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2398,14 +2398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -2439,23 +2433,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "sample document": { "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8387, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8387, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "device control aggregate document": { "device control document": [ { @@ -2489,22 +2483,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "sample document": { "sample identifier": "Plate 1 D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82453, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82453, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2512,14 +2512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -2553,23 +2547,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "sample document": { "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8142, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8142, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "device control aggregate document": { "device control document": [ { @@ -2603,22 +2597,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "sample document": { "sample identifier": "Plate 1 D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84026, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84026, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2626,14 +2626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -2667,23 +2661,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "sample document": { "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 8294, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 8294, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "device control aggregate document": { "device control document": [ { @@ -2717,22 +2711,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "sample document": { "sample identifier": "Plate 1 D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82521, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82521, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2740,14 +2740,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -2781,23 +2775,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "sample document": { "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 5792, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 5792, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "device control aggregate document": { "device control document": [ { @@ -2831,22 +2825,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "sample document": { "sample identifier": "Plate 1 E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81900, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81900, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2854,14 +2854,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -2895,23 +2889,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "sample document": { "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 5630, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 5630, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "device control aggregate document": { "device control document": [ { @@ -2945,22 +2939,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "sample document": { "sample identifier": "Plate 1 E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80721, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80721, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -2968,14 +2968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -3009,23 +3003,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "sample document": { "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 5882, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 5882, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "device control aggregate document": { "device control document": [ { @@ -3059,22 +3053,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "sample document": { "sample identifier": "Plate 1 E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 83612, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 83612, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3082,14 +3082,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -3123,23 +3117,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "sample document": { "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 6063, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 6063, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "device control aggregate document": { "device control document": [ { @@ -3173,22 +3167,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "sample document": { "sample identifier": "Plate 1 E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 83485, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 83485, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3196,14 +3196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -3237,23 +3231,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "sample document": { "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 5956, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 5956, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "device control aggregate document": { "device control document": [ { @@ -3287,22 +3281,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "sample document": { "sample identifier": "Plate 1 E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84916, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84916, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3310,14 +3310,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -3351,23 +3345,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "sample document": { "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 6096, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 6096, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "device control aggregate document": { "device control document": [ { @@ -3401,22 +3395,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "sample document": { "sample identifier": "Plate 1 E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84517, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84517, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3424,14 +3424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -3465,23 +3459,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "sample document": { "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4671, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4671, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "device control aggregate document": { "device control document": [ { @@ -3515,22 +3509,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "sample document": { "sample identifier": "Plate 1 F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82995, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82995, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3538,14 +3538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -3579,23 +3573,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "sample document": { "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4477, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4477, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "device control aggregate document": { "device control document": [ { @@ -3629,22 +3623,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "sample document": { "sample identifier": "Plate 1 F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80250, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80250, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3652,14 +3652,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -3693,23 +3687,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "sample document": { "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4639, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4639, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "device control aggregate document": { "device control document": [ { @@ -3743,22 +3737,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "sample document": { "sample identifier": "Plate 1 F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82889, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82889, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3766,14 +3766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -3807,23 +3801,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "sample document": { "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4854, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4854, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "device control aggregate document": { "device control document": [ { @@ -3857,22 +3851,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "sample document": { "sample identifier": "Plate 1 F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84629, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84629, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3880,14 +3880,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -3921,23 +3915,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "sample document": { "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4728, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4728, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "device control aggregate document": { "device control document": [ { @@ -3971,22 +3965,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "sample document": { "sample identifier": "Plate 1 F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 83293, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 83293, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -3994,14 +3994,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -4035,23 +4029,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "sample document": { "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4822, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4822, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "device control aggregate document": { "device control document": [ { @@ -4085,22 +4079,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "sample document": { "sample identifier": "Plate 1 F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 85499, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 85499, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4108,14 +4108,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -4149,23 +4143,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "sample document": { "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3887, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3887, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "device control aggregate document": { "device control document": [ { @@ -4199,22 +4193,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "sample document": { "sample identifier": "Plate 1 G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80779, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80779, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4222,14 +4222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -4263,23 +4257,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "sample document": { "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3814, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3814, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "device control aggregate document": { "device control document": [ { @@ -4313,22 +4307,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "sample document": { "sample identifier": "Plate 1 G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 79099, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 79099, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4336,14 +4336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -4377,23 +4371,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "sample document": { "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3954, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3954, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "device control aggregate document": { "device control document": [ { @@ -4427,22 +4421,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "sample document": { "sample identifier": "Plate 1 G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82346, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82346, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4450,14 +4450,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -4491,23 +4485,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "sample document": { "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3979, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3979, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "device control aggregate document": { "device control document": [ { @@ -4541,22 +4535,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "sample document": { "sample identifier": "Plate 1 G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 83081, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 83081, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4564,14 +4564,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -4605,23 +4599,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "sample document": { "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4044, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4044, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "device control aggregate document": { "device control document": [ { @@ -4655,22 +4649,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "sample document": { "sample identifier": "Plate 1 G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 83822, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 83822, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4678,14 +4678,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -4719,23 +4713,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "sample document": { "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 4139, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4139, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "device control aggregate document": { "device control document": [ { @@ -4769,22 +4763,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "sample document": { "sample identifier": "Plate 1 G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84290, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84290, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4792,14 +4792,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -4833,23 +4827,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "sample document": { "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3266, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3266, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "device control aggregate document": { "device control document": [ { @@ -4883,22 +4877,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "sample document": { "sample identifier": "Plate 1 H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81011, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81011, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -4906,14 +4906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -4947,23 +4941,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "sample document": { "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3354, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3354, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "device control aggregate document": { "device control document": [ { @@ -4997,22 +4991,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "sample document": { "sample identifier": "Plate 1 H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 80977, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 80977, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -5020,14 +5020,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -5061,23 +5055,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "sample document": { "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3252, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3252, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "device control aggregate document": { "device control document": [ { @@ -5111,37 +5105,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "sample document": { "sample identifier": "Plate 1 H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81456, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81456, + "unit": "RFU" } } ], - "analytical method identifier": "100302", - "experimental data identifier": "3134", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-10-13T15:08:06+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100302", + "experimental data identifier": "3134", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -5175,23 +5169,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "sample document": { "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3405, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3405, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "device control aggregate document": { "device control document": [ { @@ -5225,22 +5219,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "sample document": { "sample identifier": "Plate 1 H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 84428, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 84428, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -5248,14 +5248,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -5289,23 +5283,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "sample document": { "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3342, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3342, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "device control aggregate document": { "device control document": [ { @@ -5339,22 +5333,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "sample document": { "sample identifier": "Plate 1 H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 82202, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 82202, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" @@ -5362,14 +5362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-10-13T15:08:06+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -5403,23 +5397,23 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "sample document": { "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 3339, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3339, + "unit": "RFU" } }, { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "device control aggregate document": { "device control document": [ { @@ -5453,43 +5447,34 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "sample document": { "sample identifier": "Plate 1 H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "Plate 1" }, - "fluorescence": { - "value": 81633, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 81633, + "unit": "RFU" } } ], + "measurement time": "2022-10-13T15:08:06+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100302", "experimental data identifier": "3134", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision", - "model number": "EnVision", - "equipment serial number": "1050209" - }, - "data system document": { - "file name": "PE_Envision_fluorescence_example01.csv", - "ASM file identifier": "N/A", - "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.14.3049.1193", - "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -5498,6 +5483,8 @@ "value": 3912.12920565, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5509,9 +5496,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5519,6 +5504,8 @@ "value": 3923.92517971, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5530,9 +5517,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5540,6 +5525,8 @@ "value": 3948.45245355, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5551,9 +5538,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5561,6 +5546,8 @@ "value": 3933.03506298, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5572,9 +5559,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5582,6 +5567,8 @@ "value": 4061.92827247, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5593,9 +5580,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5603,6 +5588,8 @@ "value": 3996.61746992, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5614,9 +5601,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5624,6 +5609,8 @@ "value": 2385.72193555, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5635,9 +5622,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5645,6 +5630,8 @@ "value": 2384.42487617, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5656,9 +5643,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5666,6 +5651,8 @@ "value": 2396.10683014, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5677,9 +5664,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5687,6 +5672,8 @@ "value": 2390.61028269, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5698,9 +5685,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5708,6 +5693,8 @@ "value": 2396.68321027, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5719,9 +5706,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5729,6 +5714,8 @@ "value": 2424.70697585, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5740,9 +5727,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5750,6 +5735,8 @@ "value": 1497.6939597, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5761,9 +5748,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5771,6 +5756,8 @@ "value": 1488.29789767, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5782,9 +5769,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5792,6 +5777,8 @@ "value": 1474.23429335, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5803,9 +5790,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5813,6 +5798,8 @@ "value": 1513.01294815, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5824,9 +5811,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5834,6 +5819,8 @@ "value": 1487.52148035, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5845,9 +5832,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5855,6 +5840,8 @@ "value": 1471.02712185, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5866,9 +5853,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5876,6 +5861,8 @@ "value": 1004.96752006, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5887,9 +5874,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5897,6 +5882,8 @@ "value": 997.698002862, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5908,9 +5895,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5918,6 +5903,8 @@ "value": 984.957281601, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5929,9 +5916,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5939,6 +5924,8 @@ "value": 1017.18554813, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5950,9 +5937,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5960,6 +5945,8 @@ "value": 968.985790113, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5971,9 +5958,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -5981,6 +5966,8 @@ "value": 1005.07749543, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -5992,9 +5979,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6002,6 +5987,8 @@ "value": 707.203907204, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6013,9 +6000,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6023,6 +6008,8 @@ "value": 697.464104756, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6034,9 +6021,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6044,6 +6029,8 @@ "value": 703.487537674, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6055,9 +6042,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6065,6 +6050,8 @@ "value": 726.238246392, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6076,9 +6063,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6086,6 +6071,8 @@ "value": 701.399029629, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6097,9 +6084,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6107,6 +6092,8 @@ "value": 721.275009761, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6118,9 +6105,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6128,6 +6113,8 @@ "value": 562.804988252, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6139,9 +6126,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6149,6 +6134,8 @@ "value": 557.881619938, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6160,9 +6147,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6170,6 +6155,8 @@ "value": 559.664129137, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6181,9 +6168,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6191,6 +6176,8 @@ "value": 573.562254074, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6202,9 +6189,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6212,6 +6197,8 @@ "value": 567.634735212, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6223,9 +6210,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6233,6 +6218,8 @@ "value": 563.983204482, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6244,9 +6231,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6254,6 +6239,8 @@ "value": 481.189418042, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6265,9 +6252,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6275,6 +6260,8 @@ "value": 482.180558541, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6286,9 +6273,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6296,6 +6281,8 @@ "value": 480.169042819, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6307,9 +6294,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6317,6 +6302,8 @@ "value": 478.930200648, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6328,9 +6315,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6338,6 +6323,8 @@ "value": 482.450907876, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6349,9 +6336,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6359,6 +6344,8 @@ "value": 491.042828331, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6370,9 +6357,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6380,6 +6365,8 @@ "value": 403.155127082, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6391,9 +6378,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6401,6 +6386,8 @@ "value": 414.191684058, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6412,9 +6399,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6422,6 +6407,8 @@ "value": 399.233942251, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6433,9 +6420,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6443,6 +6428,8 @@ "value": 403.302222012, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6454,9 +6441,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6464,6 +6449,8 @@ "value": 406.559451108, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6475,9 +6462,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } }, { "calculated data name": "Calc 1: General", @@ -6485,6 +6470,8 @@ "value": 409.025761641, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", + "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000", "data source aggregate document": { "data source document": [ { @@ -6496,11 +6483,24 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", - "calculation description": "Calc 1: General = (X / Y) * Z where X = AC HTRF Laser [Eu](1) channel 1 window 1 Y = AC HTRF Laser [Eu](1) channel 2 window 1 Z = 10000" + } } ] + }, + "data system document": { + "ASM file identifier": "PE_Envision_fluorescence_example01.json", + "data system instance identifier": "N/A", + "file name": "PE_Envision_fluorescence_example01.csv", + "UNC path": "N/A", + "ASM converter name": "allotropy_perkinelmer_envision", + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.14.3049.1193" + }, + "device system document": { + "device identifier": "EnVision", + "model number": "EnVision", + "equipment serial number": "1050209" } } } diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json index f99226114..6bf45966e 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example02.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -44,6 +38,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "sample document": { "sample identifier": "Plate 1 A1", "location identifier": "A1", @@ -56,6 +51,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -63,14 +63,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -103,6 +97,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "sample document": { "sample identifier": "Plate 1 A2", "location identifier": "A2", @@ -115,6 +110,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -122,14 +122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -162,6 +156,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "sample document": { "sample identifier": "Plate 1 A3", "location identifier": "A3", @@ -174,6 +169,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -181,14 +181,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -221,6 +215,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "sample document": { "sample identifier": "Plate 1 A4", "location identifier": "A4", @@ -233,6 +228,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -240,14 +240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -280,6 +274,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "sample document": { "sample identifier": "Plate 1 A5", "location identifier": "A5", @@ -292,6 +287,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -299,14 +299,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -339,6 +333,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "sample document": { "sample identifier": "Plate 1 A6", "location identifier": "A6", @@ -351,6 +346,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -358,14 +358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -398,6 +392,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "sample document": { "sample identifier": "Plate 1 A7", "location identifier": "A7", @@ -410,6 +405,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -417,14 +417,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -457,6 +451,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "sample document": { "sample identifier": "Plate 1 A8", "location identifier": "A8", @@ -469,6 +464,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -476,14 +476,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -516,6 +510,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "sample document": { "sample identifier": "Plate 1 B1", "location identifier": "B1", @@ -528,6 +523,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -535,14 +535,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -575,6 +569,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "sample document": { "sample identifier": "Plate 1 B2", "location identifier": "B2", @@ -587,6 +582,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -594,14 +594,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -634,6 +628,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "sample document": { "sample identifier": "Plate 1 B3", "location identifier": "B3", @@ -646,6 +641,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -653,14 +653,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -693,6 +687,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "sample document": { "sample identifier": "Plate 1 B4", "location identifier": "B4", @@ -705,6 +700,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -712,14 +712,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -752,6 +746,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "sample document": { "sample identifier": "Plate 1 B5", "location identifier": "B5", @@ -764,6 +759,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -771,14 +771,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -811,6 +805,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "sample document": { "sample identifier": "Plate 1 B6", "location identifier": "B6", @@ -823,6 +818,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -830,14 +830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -870,6 +864,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "sample document": { "sample identifier": "Plate 1 B7", "location identifier": "B7", @@ -882,6 +877,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -889,14 +889,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -929,6 +923,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "sample document": { "sample identifier": "Plate 1 B8", "location identifier": "B8", @@ -941,6 +936,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -948,14 +948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -988,6 +982,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "sample document": { "sample identifier": "Plate 1 C1", "location identifier": "C1", @@ -1000,6 +995,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1007,14 +1007,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -1047,6 +1041,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "sample document": { "sample identifier": "Plate 1 C2", "location identifier": "C2", @@ -1059,6 +1054,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1066,14 +1066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -1106,6 +1100,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "sample document": { "sample identifier": "Plate 1 C3", "location identifier": "C3", @@ -1118,6 +1113,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1125,14 +1125,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -1165,6 +1159,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "sample document": { "sample identifier": "Plate 1 C4", "location identifier": "C4", @@ -1177,6 +1172,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1184,14 +1184,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -1224,6 +1218,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "sample document": { "sample identifier": "Plate 1 C5", "location identifier": "C5", @@ -1236,6 +1231,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1243,14 +1243,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -1283,6 +1277,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "sample document": { "sample identifier": "Plate 1 C6", "location identifier": "C6", @@ -1295,6 +1290,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1302,14 +1302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -1342,6 +1336,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "sample document": { "sample identifier": "Plate 1 C7", "location identifier": "C7", @@ -1354,6 +1349,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1361,14 +1361,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -1401,6 +1395,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "sample document": { "sample identifier": "Plate 1 C8", "location identifier": "C8", @@ -1413,6 +1408,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1420,14 +1420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -1460,6 +1454,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "sample document": { "sample identifier": "Plate 1 D1", "location identifier": "D1", @@ -1472,6 +1467,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1479,14 +1479,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -1519,6 +1513,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "sample document": { "sample identifier": "Plate 1 D2", "location identifier": "D2", @@ -1531,6 +1526,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1538,14 +1538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1578,6 +1572,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "sample document": { "sample identifier": "Plate 1 D3", "location identifier": "D3", @@ -1590,6 +1585,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1597,14 +1597,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1637,6 +1631,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "sample document": { "sample identifier": "Plate 1 D4", "location identifier": "D4", @@ -1649,6 +1644,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1656,14 +1656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1696,6 +1690,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "sample document": { "sample identifier": "Plate 1 D5", "location identifier": "D5", @@ -1708,6 +1703,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1715,14 +1715,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1755,6 +1749,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "sample document": { "sample identifier": "Plate 1 D6", "location identifier": "D6", @@ -1767,6 +1762,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1774,14 +1774,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1814,6 +1808,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "sample document": { "sample identifier": "Plate 1 D7", "location identifier": "D7", @@ -1826,6 +1821,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1833,14 +1833,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1873,6 +1867,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "sample document": { "sample identifier": "Plate 1 D8", "location identifier": "D8", @@ -1885,6 +1880,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1892,14 +1892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1932,6 +1926,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "sample document": { "sample identifier": "Plate 2 A1", "location identifier": "A1", @@ -1944,6 +1939,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -1951,14 +1951,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1991,6 +1985,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "sample document": { "sample identifier": "Plate 2 A2", "location identifier": "A2", @@ -2003,6 +1998,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2010,14 +2010,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -2050,6 +2044,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "sample document": { "sample identifier": "Plate 2 A3", "location identifier": "A3", @@ -2062,6 +2057,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2069,14 +2069,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -2109,6 +2103,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "sample document": { "sample identifier": "Plate 2 A4", "location identifier": "A4", @@ -2121,6 +2116,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2128,14 +2128,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -2168,6 +2162,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "sample document": { "sample identifier": "Plate 2 A5", "location identifier": "A5", @@ -2180,6 +2175,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2187,14 +2187,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -2227,6 +2221,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "sample document": { "sample identifier": "Plate 2 A6", "location identifier": "A6", @@ -2239,6 +2234,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2246,14 +2246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -2286,6 +2280,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "sample document": { "sample identifier": "Plate 2 A7", "location identifier": "A7", @@ -2298,6 +2293,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2305,14 +2305,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -2345,6 +2339,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "sample document": { "sample identifier": "Plate 2 A8", "location identifier": "A8", @@ -2357,6 +2352,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2364,14 +2364,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -2404,6 +2398,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "sample document": { "sample identifier": "Plate 2 A9", "location identifier": "A9", @@ -2416,6 +2411,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2423,14 +2423,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -2463,6 +2457,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "sample document": { "sample identifier": "Plate 2 A10", "location identifier": "A10", @@ -2475,6 +2470,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2482,14 +2482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -2522,6 +2516,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "sample document": { "sample identifier": "Plate 2 A11", "location identifier": "A11", @@ -2534,21 +2529,20 @@ } } ], - "analytical method identifier": "100187", + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, + "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" } }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -2581,6 +2575,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "sample document": { "sample identifier": "Plate 2 A12", "location identifier": "A12", @@ -2593,6 +2588,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2600,14 +2600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -2640,6 +2634,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "sample document": { "sample identifier": "Plate 2 B1", "location identifier": "B1", @@ -2652,6 +2647,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2659,14 +2659,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -2699,6 +2693,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "sample document": { "sample identifier": "Plate 2 B2", "location identifier": "B2", @@ -2711,6 +2706,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2718,14 +2718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -2758,6 +2752,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "sample document": { "sample identifier": "Plate 2 B3", "location identifier": "B3", @@ -2770,6 +2765,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2777,14 +2777,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -2817,6 +2811,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "sample document": { "sample identifier": "Plate 2 B4", "location identifier": "B4", @@ -2829,6 +2824,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2836,14 +2836,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -2876,6 +2870,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "sample document": { "sample identifier": "Plate 2 B5", "location identifier": "B5", @@ -2888,6 +2883,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2895,14 +2895,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -2935,6 +2929,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "sample document": { "sample identifier": "Plate 2 B6", "location identifier": "B6", @@ -2947,6 +2942,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -2954,14 +2954,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -2994,6 +2988,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "sample document": { "sample identifier": "Plate 2 B7", "location identifier": "B7", @@ -3006,6 +3001,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3013,14 +3013,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -3053,6 +3047,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "sample document": { "sample identifier": "Plate 2 B8", "location identifier": "B8", @@ -3065,6 +3060,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3072,14 +3072,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -3112,6 +3106,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "sample document": { "sample identifier": "Plate 2 B9", "location identifier": "B9", @@ -3124,6 +3119,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3131,14 +3131,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -3171,6 +3165,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "sample document": { "sample identifier": "Plate 2 B10", "location identifier": "B10", @@ -3183,6 +3178,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3190,14 +3190,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -3230,6 +3224,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "sample document": { "sample identifier": "Plate 2 B11", "location identifier": "B11", @@ -3242,6 +3237,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3249,14 +3249,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -3289,6 +3283,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "sample document": { "sample identifier": "Plate 2 B12", "location identifier": "B12", @@ -3301,6 +3296,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3308,14 +3308,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -3348,6 +3342,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "sample document": { "sample identifier": "Plate 2 C1", "location identifier": "C1", @@ -3360,6 +3355,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3367,14 +3367,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -3407,6 +3401,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "sample document": { "sample identifier": "Plate 2 C2", "location identifier": "C2", @@ -3419,6 +3414,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3426,14 +3426,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -3466,6 +3460,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "sample document": { "sample identifier": "Plate 2 C3", "location identifier": "C3", @@ -3478,6 +3473,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3485,14 +3485,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -3525,6 +3519,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "sample document": { "sample identifier": "Plate 2 C4", "location identifier": "C4", @@ -3537,6 +3532,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3544,14 +3544,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -3584,6 +3578,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "sample document": { "sample identifier": "Plate 2 C5", "location identifier": "C5", @@ -3596,6 +3591,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3603,14 +3603,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -3643,6 +3637,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "sample document": { "sample identifier": "Plate 2 C6", "location identifier": "C6", @@ -3655,6 +3650,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3662,14 +3662,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -3702,6 +3696,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "sample document": { "sample identifier": "Plate 2 C7", "location identifier": "C7", @@ -3714,6 +3709,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3721,14 +3721,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -3761,6 +3755,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "sample document": { "sample identifier": "Plate 2 C8", "location identifier": "C8", @@ -3773,21 +3768,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -3820,6 +3814,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "sample document": { "sample identifier": "Plate 2 C9", "location identifier": "C9", @@ -3832,6 +3827,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3839,14 +3839,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -3879,6 +3873,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "sample document": { "sample identifier": "Plate 2 C10", "location identifier": "C10", @@ -3891,6 +3886,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3898,14 +3898,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -3938,6 +3932,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "sample document": { "sample identifier": "Plate 2 C11", "location identifier": "C11", @@ -3950,6 +3945,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -3957,14 +3957,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -3997,6 +3991,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "sample document": { "sample identifier": "Plate 2 C12", "location identifier": "C12", @@ -4009,6 +4004,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4016,14 +4016,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -4056,6 +4050,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "sample document": { "sample identifier": "Plate 2 D1", "location identifier": "D1", @@ -4068,6 +4063,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4075,14 +4075,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -4115,6 +4109,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "sample document": { "sample identifier": "Plate 2 D2", "location identifier": "D2", @@ -4127,6 +4122,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4134,14 +4134,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -4174,6 +4168,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "sample document": { "sample identifier": "Plate 2 D3", "location identifier": "D3", @@ -4186,6 +4181,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4193,14 +4193,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -4233,6 +4227,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "sample document": { "sample identifier": "Plate 2 D4", "location identifier": "D4", @@ -4245,6 +4240,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4252,14 +4252,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -4292,6 +4286,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "sample document": { "sample identifier": "Plate 2 D5", "location identifier": "D5", @@ -4304,6 +4299,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4311,14 +4311,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -4351,6 +4345,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "sample document": { "sample identifier": "Plate 2 D6", "location identifier": "D6", @@ -4363,6 +4358,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4370,14 +4370,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -4410,6 +4404,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "sample document": { "sample identifier": "Plate 2 D7", "location identifier": "D7", @@ -4422,6 +4417,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4429,14 +4429,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -4469,6 +4463,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "sample document": { "sample identifier": "Plate 2 D8", "location identifier": "D8", @@ -4481,6 +4476,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4488,14 +4488,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -4528,6 +4522,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "sample document": { "sample identifier": "Plate 2 D9", "location identifier": "D9", @@ -4540,6 +4535,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4547,14 +4547,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -4587,6 +4581,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "sample document": { "sample identifier": "Plate 2 D10", "location identifier": "D10", @@ -4599,6 +4594,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4606,14 +4606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -4646,6 +4640,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "sample document": { "sample identifier": "Plate 2 D11", "location identifier": "D11", @@ -4658,6 +4653,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4665,14 +4665,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -4705,6 +4699,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "sample document": { "sample identifier": "Plate 2 D12", "location identifier": "D12", @@ -4717,6 +4712,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4724,14 +4724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -4764,6 +4758,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "sample document": { "sample identifier": "Plate 2 E1", "location identifier": "E1", @@ -4776,6 +4771,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4783,14 +4783,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -4823,6 +4817,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "sample document": { "sample identifier": "Plate 2 E2", "location identifier": "E2", @@ -4835,6 +4830,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4842,14 +4842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -4882,6 +4876,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "sample document": { "sample identifier": "Plate 2 E3", "location identifier": "E3", @@ -4894,6 +4889,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4901,14 +4901,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -4941,6 +4935,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "sample document": { "sample identifier": "Plate 2 E4", "location identifier": "E4", @@ -4953,6 +4948,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -4960,14 +4960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -5000,6 +4994,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "sample document": { "sample identifier": "Plate 2 E5", "location identifier": "E5", @@ -5012,21 +5007,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -5059,6 +5053,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "sample document": { "sample identifier": "Plate 2 E6", "location identifier": "E6", @@ -5071,6 +5066,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5078,14 +5078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -5118,6 +5112,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "sample document": { "sample identifier": "Plate 2 E7", "location identifier": "E7", @@ -5130,6 +5125,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5137,14 +5137,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -5177,6 +5171,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "sample document": { "sample identifier": "Plate 2 E8", "location identifier": "E8", @@ -5189,6 +5184,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5196,14 +5196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -5236,6 +5230,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "sample document": { "sample identifier": "Plate 2 E9", "location identifier": "E9", @@ -5248,6 +5243,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5255,14 +5255,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -5295,6 +5289,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "sample document": { "sample identifier": "Plate 2 E10", "location identifier": "E10", @@ -5307,6 +5302,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5314,14 +5314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -5354,6 +5348,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "sample document": { "sample identifier": "Plate 2 E11", "location identifier": "E11", @@ -5366,6 +5361,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5373,14 +5373,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -5413,6 +5407,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "sample document": { "sample identifier": "Plate 2 E12", "location identifier": "E12", @@ -5425,6 +5420,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5432,14 +5432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -5472,6 +5466,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "sample document": { "sample identifier": "Plate 2 F1", "location identifier": "F1", @@ -5484,6 +5479,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5491,14 +5491,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -5531,6 +5525,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "sample document": { "sample identifier": "Plate 2 F2", "location identifier": "F2", @@ -5543,6 +5538,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5550,14 +5550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -5590,6 +5584,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "sample document": { "sample identifier": "Plate 2 F3", "location identifier": "F3", @@ -5602,6 +5597,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5609,14 +5609,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -5649,6 +5643,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "sample document": { "sample identifier": "Plate 2 F4", "location identifier": "F4", @@ -5661,6 +5656,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5668,14 +5668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -5708,6 +5702,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "sample document": { "sample identifier": "Plate 2 F5", "location identifier": "F5", @@ -5720,6 +5715,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5727,14 +5727,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -5767,6 +5761,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "sample document": { "sample identifier": "Plate 2 F6", "location identifier": "F6", @@ -5779,6 +5774,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5786,14 +5786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -5826,6 +5820,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "sample document": { "sample identifier": "Plate 2 F7", "location identifier": "F7", @@ -5838,6 +5833,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5845,14 +5845,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "device control aggregate document": { "device control document": [ { @@ -5885,6 +5879,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "sample document": { "sample identifier": "Plate 2 F8", "location identifier": "F8", @@ -5897,6 +5892,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5904,14 +5904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "device control aggregate document": { "device control document": [ { @@ -5944,6 +5938,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "sample document": { "sample identifier": "Plate 2 F9", "location identifier": "F9", @@ -5956,6 +5951,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -5963,14 +5963,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "device control aggregate document": { "device control document": [ { @@ -6003,6 +5997,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "sample document": { "sample identifier": "Plate 2 F10", "location identifier": "F10", @@ -6015,6 +6010,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6022,14 +6022,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "device control aggregate document": { "device control document": [ { @@ -6062,6 +6056,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "sample document": { "sample identifier": "Plate 2 F11", "location identifier": "F11", @@ -6074,6 +6069,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6081,14 +6081,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "device control aggregate document": { "device control document": [ { @@ -6121,6 +6115,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "sample document": { "sample identifier": "Plate 2 F12", "location identifier": "F12", @@ -6133,6 +6128,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6140,14 +6140,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "device control aggregate document": { "device control document": [ { @@ -6180,6 +6174,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "sample document": { "sample identifier": "Plate 2 G1", "location identifier": "G1", @@ -6192,6 +6187,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6199,14 +6199,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "device control aggregate document": { "device control document": [ { @@ -6239,6 +6233,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "sample document": { "sample identifier": "Plate 2 G2", "location identifier": "G2", @@ -6251,21 +6246,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "device control aggregate document": { "device control document": [ { @@ -6298,6 +6292,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "sample document": { "sample identifier": "Plate 2 G3", "location identifier": "G3", @@ -6310,6 +6305,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6317,14 +6317,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "device control aggregate document": { "device control document": [ { @@ -6357,6 +6351,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "sample document": { "sample identifier": "Plate 2 G4", "location identifier": "G4", @@ -6369,6 +6364,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6376,14 +6376,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "device control aggregate document": { "device control document": [ { @@ -6416,6 +6410,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "sample document": { "sample identifier": "Plate 2 G5", "location identifier": "G5", @@ -6428,6 +6423,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6435,14 +6435,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "device control aggregate document": { "device control document": [ { @@ -6475,6 +6469,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "sample document": { "sample identifier": "Plate 2 G6", "location identifier": "G6", @@ -6487,6 +6482,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6494,14 +6494,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "device control aggregate document": { "device control document": [ { @@ -6534,6 +6528,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "sample document": { "sample identifier": "Plate 2 G7", "location identifier": "G7", @@ -6546,6 +6541,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6553,14 +6553,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "device control aggregate document": { "device control document": [ { @@ -6593,6 +6587,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "sample document": { "sample identifier": "Plate 2 G8", "location identifier": "G8", @@ -6605,6 +6600,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6612,14 +6612,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "device control aggregate document": { "device control document": [ { @@ -6652,6 +6646,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "sample document": { "sample identifier": "Plate 2 G9", "location identifier": "G9", @@ -6664,6 +6659,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6671,14 +6671,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "device control aggregate document": { "device control document": [ { @@ -6711,6 +6705,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "sample document": { "sample identifier": "Plate 2 G10", "location identifier": "G10", @@ -6723,6 +6718,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6730,14 +6730,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "device control aggregate document": { "device control document": [ { @@ -6770,6 +6764,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "sample document": { "sample identifier": "Plate 2 G11", "location identifier": "G11", @@ -6782,6 +6777,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6789,14 +6789,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "device control aggregate document": { "device control document": [ { @@ -6829,6 +6823,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "sample document": { "sample identifier": "Plate 2 G12", "location identifier": "G12", @@ -6841,6 +6836,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6848,14 +6848,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "device control aggregate document": { "device control document": [ { @@ -6888,6 +6882,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "sample document": { "sample identifier": "Plate 2 H1", "location identifier": "H1", @@ -6900,6 +6895,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6907,14 +6907,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "device control aggregate document": { "device control document": [ { @@ -6947,6 +6941,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "sample document": { "sample identifier": "Plate 2 H2", "location identifier": "H2", @@ -6959,6 +6954,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -6966,14 +6966,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "device control aggregate document": { "device control document": [ { @@ -7006,6 +7000,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "sample document": { "sample identifier": "Plate 2 H3", "location identifier": "H3", @@ -7018,6 +7013,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7025,14 +7025,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "device control aggregate document": { "device control document": [ { @@ -7065,6 +7059,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "sample document": { "sample identifier": "Plate 2 H4", "location identifier": "H4", @@ -7077,6 +7072,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7084,14 +7084,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "device control aggregate document": { "device control document": [ { @@ -7124,6 +7118,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "sample document": { "sample identifier": "Plate 2 H5", "location identifier": "H5", @@ -7136,6 +7131,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7143,14 +7143,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "device control aggregate document": { "device control document": [ { @@ -7183,6 +7177,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "sample document": { "sample identifier": "Plate 2 H6", "location identifier": "H6", @@ -7195,6 +7190,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7202,14 +7202,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "device control aggregate document": { "device control document": [ { @@ -7242,6 +7236,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "sample document": { "sample identifier": "Plate 2 H7", "location identifier": "H7", @@ -7254,6 +7249,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7261,14 +7261,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "device control aggregate document": { "device control document": [ { @@ -7301,6 +7295,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "sample document": { "sample identifier": "Plate 2 H8", "location identifier": "H8", @@ -7313,6 +7308,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7320,14 +7320,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "device control aggregate document": { "device control document": [ { @@ -7360,6 +7354,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "sample document": { "sample identifier": "Plate 2 H9", "location identifier": "H9", @@ -7372,6 +7367,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7379,14 +7379,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "device control aggregate document": { "device control document": [ { @@ -7419,6 +7413,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "sample document": { "sample identifier": "Plate 2 H10", "location identifier": "H10", @@ -7431,6 +7426,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7438,14 +7438,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "device control aggregate document": { "device control document": [ { @@ -7478,6 +7472,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "sample document": { "sample identifier": "Plate 2 H11", "location identifier": "H11", @@ -7490,21 +7485,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "device control aggregate document": { "device control document": [ { @@ -7537,6 +7531,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "sample document": { "sample identifier": "Plate 2 H12", "location identifier": "H12", @@ -7549,6 +7544,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7556,14 +7556,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "device control aggregate document": { "device control document": [ { @@ -7596,6 +7590,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "sample document": { "sample identifier": "Plate 3 A1", "location identifier": "A1", @@ -7608,6 +7603,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7615,14 +7615,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "device control aggregate document": { "device control document": [ { @@ -7655,6 +7649,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "sample document": { "sample identifier": "Plate 3 A2", "location identifier": "A2", @@ -7667,6 +7662,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7674,14 +7674,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "device control aggregate document": { "device control document": [ { @@ -7714,6 +7708,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "sample document": { "sample identifier": "Plate 3 A3", "location identifier": "A3", @@ -7726,6 +7721,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7733,14 +7733,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "device control aggregate document": { "device control document": [ { @@ -7773,6 +7767,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "sample document": { "sample identifier": "Plate 3 A4", "location identifier": "A4", @@ -7785,6 +7780,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7792,14 +7792,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "device control aggregate document": { "device control document": [ { @@ -7832,6 +7826,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "sample document": { "sample identifier": "Plate 3 A5", "location identifier": "A5", @@ -7844,6 +7839,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7851,14 +7851,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "device control aggregate document": { "device control document": [ { @@ -7891,6 +7885,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "sample document": { "sample identifier": "Plate 3 A6", "location identifier": "A6", @@ -7903,6 +7898,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7910,14 +7910,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "device control aggregate document": { "device control document": [ { @@ -7950,6 +7944,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "sample document": { "sample identifier": "Plate 3 A7", "location identifier": "A7", @@ -7962,6 +7957,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -7969,14 +7969,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "device control aggregate document": { "device control document": [ { @@ -8009,6 +8003,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "sample document": { "sample identifier": "Plate 3 A8", "location identifier": "A8", @@ -8021,6 +8016,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8028,14 +8028,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "device control aggregate document": { "device control document": [ { @@ -8068,6 +8062,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "sample document": { "sample identifier": "Plate 3 A9", "location identifier": "A9", @@ -8080,6 +8075,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8087,14 +8087,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "device control aggregate document": { "device control document": [ { @@ -8127,6 +8121,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "sample document": { "sample identifier": "Plate 3 A10", "location identifier": "A10", @@ -8139,6 +8134,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8146,14 +8146,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "device control aggregate document": { "device control document": [ { @@ -8186,6 +8180,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "sample document": { "sample identifier": "Plate 3 A11", "location identifier": "A11", @@ -8198,6 +8193,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8205,14 +8205,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "device control aggregate document": { "device control document": [ { @@ -8245,6 +8239,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "sample document": { "sample identifier": "Plate 3 A12", "location identifier": "A12", @@ -8257,6 +8252,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8264,14 +8264,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "device control aggregate document": { "device control document": [ { @@ -8304,6 +8298,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "sample document": { "sample identifier": "Plate 3 B1", "location identifier": "B1", @@ -8316,6 +8311,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8323,14 +8323,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "device control aggregate document": { "device control document": [ { @@ -8363,6 +8357,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "sample document": { "sample identifier": "Plate 3 B2", "location identifier": "B2", @@ -8375,6 +8370,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8382,14 +8382,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "device control aggregate document": { "device control document": [ { @@ -8422,6 +8416,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "sample document": { "sample identifier": "Plate 3 B3", "location identifier": "B3", @@ -8434,6 +8429,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8441,14 +8441,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "device control aggregate document": { "device control document": [ { @@ -8481,6 +8475,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "sample document": { "sample identifier": "Plate 3 B4", "location identifier": "B4", @@ -8493,6 +8488,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8500,14 +8500,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "device control aggregate document": { "device control document": [ { @@ -8540,6 +8534,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "sample document": { "sample identifier": "Plate 3 B5", "location identifier": "B5", @@ -8552,6 +8547,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8559,14 +8559,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "device control aggregate document": { "device control document": [ { @@ -8599,6 +8593,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "sample document": { "sample identifier": "Plate 3 B6", "location identifier": "B6", @@ -8611,6 +8606,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8618,14 +8618,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "device control aggregate document": { "device control document": [ { @@ -8658,6 +8652,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "sample document": { "sample identifier": "Plate 3 B7", "location identifier": "B7", @@ -8670,6 +8665,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8677,14 +8677,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "device control aggregate document": { "device control document": [ { @@ -8717,6 +8711,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "sample document": { "sample identifier": "Plate 3 B8", "location identifier": "B8", @@ -8729,21 +8724,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "device control aggregate document": { "device control document": [ { @@ -8776,6 +8770,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "sample document": { "sample identifier": "Plate 3 B9", "location identifier": "B9", @@ -8788,6 +8783,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8795,14 +8795,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "device control aggregate document": { "device control document": [ { @@ -8835,6 +8829,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "sample document": { "sample identifier": "Plate 3 B10", "location identifier": "B10", @@ -8847,6 +8842,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8854,14 +8854,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "device control aggregate document": { "device control document": [ { @@ -8894,6 +8888,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "sample document": { "sample identifier": "Plate 3 B11", "location identifier": "B11", @@ -8906,6 +8901,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8913,14 +8913,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "device control aggregate document": { "device control document": [ { @@ -8953,6 +8947,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "sample document": { "sample identifier": "Plate 3 B12", "location identifier": "B12", @@ -8965,6 +8960,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -8972,14 +8972,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "device control aggregate document": { "device control document": [ { @@ -9012,6 +9006,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "sample document": { "sample identifier": "Plate 3 C1", "location identifier": "C1", @@ -9024,6 +9019,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9031,14 +9031,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "device control aggregate document": { "device control document": [ { @@ -9071,6 +9065,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "sample document": { "sample identifier": "Plate 3 C2", "location identifier": "C2", @@ -9083,6 +9078,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9090,14 +9090,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "device control aggregate document": { "device control document": [ { @@ -9130,6 +9124,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "sample document": { "sample identifier": "Plate 3 C3", "location identifier": "C3", @@ -9142,6 +9137,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9149,14 +9149,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "device control aggregate document": { "device control document": [ { @@ -9189,6 +9183,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "sample document": { "sample identifier": "Plate 3 C4", "location identifier": "C4", @@ -9201,6 +9196,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9208,14 +9208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "device control aggregate document": { "device control document": [ { @@ -9248,6 +9242,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "sample document": { "sample identifier": "Plate 3 C5", "location identifier": "C5", @@ -9260,6 +9255,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9267,14 +9267,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "device control aggregate document": { "device control document": [ { @@ -9307,6 +9301,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "sample document": { "sample identifier": "Plate 3 C6", "location identifier": "C6", @@ -9319,6 +9314,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9326,14 +9326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "device control aggregate document": { "device control document": [ { @@ -9366,6 +9360,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "sample document": { "sample identifier": "Plate 3 C7", "location identifier": "C7", @@ -9378,6 +9373,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9385,14 +9385,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "device control aggregate document": { "device control document": [ { @@ -9425,6 +9419,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "sample document": { "sample identifier": "Plate 3 C8", "location identifier": "C8", @@ -9437,6 +9432,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9444,14 +9444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "device control aggregate document": { "device control document": [ { @@ -9484,6 +9478,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "sample document": { "sample identifier": "Plate 3 C9", "location identifier": "C9", @@ -9496,6 +9491,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9503,14 +9503,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "device control aggregate document": { "device control document": [ { @@ -9543,6 +9537,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "sample document": { "sample identifier": "Plate 3 C10", "location identifier": "C10", @@ -9555,6 +9550,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9562,14 +9562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "device control aggregate document": { "device control document": [ { @@ -9602,6 +9596,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "sample document": { "sample identifier": "Plate 3 C11", "location identifier": "C11", @@ -9614,6 +9609,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9621,14 +9621,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "device control aggregate document": { "device control document": [ { @@ -9661,6 +9655,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "sample document": { "sample identifier": "Plate 3 C12", "location identifier": "C12", @@ -9673,6 +9668,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9680,14 +9680,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "device control aggregate document": { "device control document": [ { @@ -9720,6 +9714,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "sample document": { "sample identifier": "Plate 3 D1", "location identifier": "D1", @@ -9732,6 +9727,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9739,14 +9739,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "device control aggregate document": { "device control document": [ { @@ -9779,6 +9773,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "sample document": { "sample identifier": "Plate 3 D2", "location identifier": "D2", @@ -9791,6 +9786,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9798,14 +9798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "device control aggregate document": { "device control document": [ { @@ -9838,6 +9832,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "sample document": { "sample identifier": "Plate 3 D3", "location identifier": "D3", @@ -9850,6 +9845,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9857,14 +9857,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "device control aggregate document": { "device control document": [ { @@ -9897,6 +9891,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "sample document": { "sample identifier": "Plate 3 D4", "location identifier": "D4", @@ -9909,6 +9904,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -9916,14 +9916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "device control aggregate document": { "device control document": [ { @@ -9956,6 +9950,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "sample document": { "sample identifier": "Plate 3 D5", "location identifier": "D5", @@ -9968,21 +9963,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "device control aggregate document": { "device control document": [ { @@ -10015,6 +10009,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "sample document": { "sample identifier": "Plate 3 D6", "location identifier": "D6", @@ -10027,6 +10022,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10034,14 +10034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "device control aggregate document": { "device control document": [ { @@ -10074,6 +10068,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "sample document": { "sample identifier": "Plate 3 D7", "location identifier": "D7", @@ -10086,6 +10081,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10093,14 +10093,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "device control aggregate document": { "device control document": [ { @@ -10133,6 +10127,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "sample document": { "sample identifier": "Plate 3 D8", "location identifier": "D8", @@ -10145,6 +10140,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10152,14 +10152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "device control aggregate document": { "device control document": [ { @@ -10192,6 +10186,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "sample document": { "sample identifier": "Plate 3 D9", "location identifier": "D9", @@ -10204,6 +10199,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10211,14 +10211,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "device control aggregate document": { "device control document": [ { @@ -10251,6 +10245,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "sample document": { "sample identifier": "Plate 3 D10", "location identifier": "D10", @@ -10263,6 +10258,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10270,14 +10270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "device control aggregate document": { "device control document": [ { @@ -10310,6 +10304,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "sample document": { "sample identifier": "Plate 3 D11", "location identifier": "D11", @@ -10322,6 +10317,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10329,14 +10329,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "device control aggregate document": { "device control document": [ { @@ -10369,6 +10363,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "sample document": { "sample identifier": "Plate 3 D12", "location identifier": "D12", @@ -10381,6 +10376,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10388,14 +10388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "device control aggregate document": { "device control document": [ { @@ -10428,6 +10422,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "sample document": { "sample identifier": "Plate 3 E1", "location identifier": "E1", @@ -10440,6 +10435,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10447,14 +10447,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "device control aggregate document": { "device control document": [ { @@ -10487,6 +10481,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "sample document": { "sample identifier": "Plate 3 E2", "location identifier": "E2", @@ -10499,6 +10494,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10506,14 +10506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "device control aggregate document": { "device control document": [ { @@ -10546,6 +10540,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "sample document": { "sample identifier": "Plate 3 E3", "location identifier": "E3", @@ -10558,6 +10553,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10565,14 +10565,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "device control aggregate document": { "device control document": [ { @@ -10605,6 +10599,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "sample document": { "sample identifier": "Plate 3 E4", "location identifier": "E4", @@ -10617,6 +10612,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10624,14 +10624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "device control aggregate document": { "device control document": [ { @@ -10664,6 +10658,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "sample document": { "sample identifier": "Plate 3 E5", "location identifier": "E5", @@ -10676,6 +10671,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10683,14 +10683,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "device control aggregate document": { "device control document": [ { @@ -10723,6 +10717,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "sample document": { "sample identifier": "Plate 3 E6", "location identifier": "E6", @@ -10735,6 +10730,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10742,14 +10742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "device control aggregate document": { "device control document": [ { @@ -10782,6 +10776,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "sample document": { "sample identifier": "Plate 3 E7", "location identifier": "E7", @@ -10794,6 +10789,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10801,14 +10801,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "device control aggregate document": { "device control document": [ { @@ -10841,6 +10835,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "sample document": { "sample identifier": "Plate 3 E8", "location identifier": "E8", @@ -10853,6 +10848,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10860,14 +10860,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "device control aggregate document": { "device control document": [ { @@ -10900,6 +10894,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "sample document": { "sample identifier": "Plate 3 E9", "location identifier": "E9", @@ -10912,6 +10907,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10919,14 +10919,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "device control aggregate document": { "device control document": [ { @@ -10959,6 +10953,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "sample document": { "sample identifier": "Plate 3 E10", "location identifier": "E10", @@ -10971,6 +10966,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -10978,14 +10978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "device control aggregate document": { "device control document": [ { @@ -11018,6 +11012,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "sample document": { "sample identifier": "Plate 3 E11", "location identifier": "E11", @@ -11030,6 +11025,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11037,14 +11037,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "device control aggregate document": { "device control document": [ { @@ -11077,6 +11071,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "sample document": { "sample identifier": "Plate 3 E12", "location identifier": "E12", @@ -11089,6 +11084,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11096,14 +11096,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "device control aggregate document": { "device control document": [ { @@ -11136,6 +11130,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "sample document": { "sample identifier": "Plate 3 F1", "location identifier": "F1", @@ -11148,6 +11143,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11155,14 +11155,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "device control aggregate document": { "device control document": [ { @@ -11195,6 +11189,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "sample document": { "sample identifier": "Plate 3 F2", "location identifier": "F2", @@ -11207,21 +11202,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "device control aggregate document": { "device control document": [ { @@ -11254,6 +11248,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "sample document": { "sample identifier": "Plate 3 F3", "location identifier": "F3", @@ -11266,6 +11261,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11273,14 +11273,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "device control aggregate document": { "device control document": [ { @@ -11313,6 +11307,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "sample document": { "sample identifier": "Plate 3 F4", "location identifier": "F4", @@ -11325,6 +11320,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11332,14 +11332,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "device control aggregate document": { "device control document": [ { @@ -11372,6 +11366,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "sample document": { "sample identifier": "Plate 3 F5", "location identifier": "F5", @@ -11384,6 +11379,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11391,14 +11391,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "device control aggregate document": { "device control document": [ { @@ -11431,6 +11425,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "sample document": { "sample identifier": "Plate 3 F6", "location identifier": "F6", @@ -11443,6 +11438,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11450,14 +11450,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "device control aggregate document": { "device control document": [ { @@ -11490,6 +11484,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "sample document": { "sample identifier": "Plate 3 F7", "location identifier": "F7", @@ -11502,6 +11497,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11509,14 +11509,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "device control aggregate document": { "device control document": [ { @@ -11549,6 +11543,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "sample document": { "sample identifier": "Plate 3 F8", "location identifier": "F8", @@ -11561,6 +11556,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11568,14 +11568,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "device control aggregate document": { "device control document": [ { @@ -11608,6 +11602,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "sample document": { "sample identifier": "Plate 3 F9", "location identifier": "F9", @@ -11620,6 +11615,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11627,14 +11627,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "device control aggregate document": { "device control document": [ { @@ -11667,6 +11661,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "sample document": { "sample identifier": "Plate 3 F10", "location identifier": "F10", @@ -11679,6 +11674,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11686,14 +11686,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "device control aggregate document": { "device control document": [ { @@ -11726,6 +11720,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "sample document": { "sample identifier": "Plate 3 F11", "location identifier": "F11", @@ -11738,6 +11733,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11745,14 +11745,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "device control aggregate document": { "device control document": [ { @@ -11785,6 +11779,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "sample document": { "sample identifier": "Plate 3 F12", "location identifier": "F12", @@ -11797,6 +11792,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11804,14 +11804,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "device control aggregate document": { "device control document": [ { @@ -11844,6 +11838,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "sample document": { "sample identifier": "Plate 3 G1", "location identifier": "G1", @@ -11856,6 +11851,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11863,14 +11863,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "device control aggregate document": { "device control document": [ { @@ -11903,6 +11897,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "sample document": { "sample identifier": "Plate 3 G2", "location identifier": "G2", @@ -11915,6 +11910,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11922,14 +11922,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "device control aggregate document": { "device control document": [ { @@ -11962,6 +11956,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "sample document": { "sample identifier": "Plate 3 G3", "location identifier": "G3", @@ -11974,6 +11969,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -11981,14 +11981,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "device control aggregate document": { "device control document": [ { @@ -12021,6 +12015,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "sample document": { "sample identifier": "Plate 3 G4", "location identifier": "G4", @@ -12033,6 +12028,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12040,14 +12040,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "device control aggregate document": { "device control document": [ { @@ -12080,6 +12074,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "sample document": { "sample identifier": "Plate 3 G5", "location identifier": "G5", @@ -12092,6 +12087,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12099,14 +12099,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "device control aggregate document": { "device control document": [ { @@ -12139,6 +12133,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "sample document": { "sample identifier": "Plate 3 G6", "location identifier": "G6", @@ -12151,6 +12146,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12158,14 +12158,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "device control aggregate document": { "device control document": [ { @@ -12198,6 +12192,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "sample document": { "sample identifier": "Plate 3 G7", "location identifier": "G7", @@ -12210,6 +12205,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12217,14 +12217,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "device control aggregate document": { "device control document": [ { @@ -12257,6 +12251,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "sample document": { "sample identifier": "Plate 3 G8", "location identifier": "G8", @@ -12269,6 +12264,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12276,14 +12276,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "device control aggregate document": { "device control document": [ { @@ -12316,6 +12310,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "sample document": { "sample identifier": "Plate 3 G9", "location identifier": "G9", @@ -12328,6 +12323,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12335,14 +12335,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "device control aggregate document": { "device control document": [ { @@ -12375,6 +12369,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "sample document": { "sample identifier": "Plate 3 G10", "location identifier": "G10", @@ -12387,6 +12382,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12394,14 +12394,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "device control aggregate document": { "device control document": [ { @@ -12434,6 +12428,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "sample document": { "sample identifier": "Plate 3 G11", "location identifier": "G11", @@ -12446,21 +12441,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "device control aggregate document": { "device control document": [ { @@ -12493,6 +12487,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "sample document": { "sample identifier": "Plate 3 G12", "location identifier": "G12", @@ -12505,6 +12500,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12512,14 +12512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "device control aggregate document": { "device control document": [ { @@ -12552,6 +12546,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "sample document": { "sample identifier": "Plate 3 H1", "location identifier": "H1", @@ -12564,6 +12559,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12571,14 +12571,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "device control aggregate document": { "device control document": [ { @@ -12611,6 +12605,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "sample document": { "sample identifier": "Plate 3 H2", "location identifier": "H2", @@ -12623,6 +12618,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12630,14 +12630,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "device control aggregate document": { "device control document": [ { @@ -12670,6 +12664,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "sample document": { "sample identifier": "Plate 3 H3", "location identifier": "H3", @@ -12682,6 +12677,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12689,14 +12689,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "device control aggregate document": { "device control document": [ { @@ -12729,6 +12723,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "sample document": { "sample identifier": "Plate 3 H4", "location identifier": "H4", @@ -12741,6 +12736,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12748,14 +12748,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "device control aggregate document": { "device control document": [ { @@ -12788,6 +12782,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "sample document": { "sample identifier": "Plate 3 H5", "location identifier": "H5", @@ -12800,6 +12795,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12807,14 +12807,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "device control aggregate document": { "device control document": [ { @@ -12847,6 +12841,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "sample document": { "sample identifier": "Plate 3 H6", "location identifier": "H6", @@ -12859,6 +12854,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12866,14 +12866,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "device control aggregate document": { "device control document": [ { @@ -12906,6 +12900,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "sample document": { "sample identifier": "Plate 3 H7", "location identifier": "H7", @@ -12918,6 +12913,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12925,14 +12925,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "device control aggregate document": { "device control document": [ { @@ -12965,6 +12959,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "sample document": { "sample identifier": "Plate 3 H8", "location identifier": "H8", @@ -12977,6 +12972,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -12984,14 +12984,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "device control aggregate document": { "device control document": [ { @@ -13024,6 +13018,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "sample document": { "sample identifier": "Plate 3 H9", "location identifier": "H9", @@ -13036,6 +13031,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13043,14 +13043,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "device control aggregate document": { "device control document": [ { @@ -13083,6 +13077,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "sample document": { "sample identifier": "Plate 3 H10", "location identifier": "H10", @@ -13095,6 +13090,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13102,14 +13102,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "device control aggregate document": { "device control document": [ { @@ -13142,6 +13136,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "sample document": { "sample identifier": "Plate 3 H11", "location identifier": "H11", @@ -13154,6 +13149,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13161,14 +13161,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "device control aggregate document": { "device control document": [ { @@ -13201,6 +13195,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "sample document": { "sample identifier": "Plate 3 H12", "location identifier": "H12", @@ -13213,6 +13208,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13220,14 +13220,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "device control aggregate document": { "device control document": [ { @@ -13260,6 +13254,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "sample document": { "sample identifier": "Plate 4 A1", "location identifier": "A1", @@ -13272,6 +13267,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13279,14 +13279,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "device control aggregate document": { "device control document": [ { @@ -13319,6 +13313,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "sample document": { "sample identifier": "Plate 4 A2", "location identifier": "A2", @@ -13331,6 +13326,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13338,14 +13338,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "device control aggregate document": { "device control document": [ { @@ -13378,6 +13372,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "sample document": { "sample identifier": "Plate 4 A3", "location identifier": "A3", @@ -13390,6 +13385,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13397,14 +13397,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "device control aggregate document": { "device control document": [ { @@ -13437,6 +13431,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "sample document": { "sample identifier": "Plate 4 A4", "location identifier": "A4", @@ -13449,6 +13444,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13456,14 +13456,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "device control aggregate document": { "device control document": [ { @@ -13496,6 +13490,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "sample document": { "sample identifier": "Plate 4 A5", "location identifier": "A5", @@ -13508,6 +13503,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13515,14 +13515,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "device control aggregate document": { "device control document": [ { @@ -13555,6 +13549,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "sample document": { "sample identifier": "Plate 4 A6", "location identifier": "A6", @@ -13567,6 +13562,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13574,14 +13574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "device control aggregate document": { "device control document": [ { @@ -13614,6 +13608,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "sample document": { "sample identifier": "Plate 4 A7", "location identifier": "A7", @@ -13626,6 +13621,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13633,14 +13633,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "device control aggregate document": { "device control document": [ { @@ -13673,6 +13667,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "sample document": { "sample identifier": "Plate 4 A8", "location identifier": "A8", @@ -13685,21 +13680,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "device control aggregate document": { "device control document": [ { @@ -13732,6 +13726,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "sample document": { "sample identifier": "Plate 4 A9", "location identifier": "A9", @@ -13744,6 +13739,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13751,14 +13751,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "device control aggregate document": { "device control document": [ { @@ -13791,6 +13785,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "sample document": { "sample identifier": "Plate 4 A10", "location identifier": "A10", @@ -13803,6 +13798,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13810,14 +13810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "device control aggregate document": { "device control document": [ { @@ -13850,6 +13844,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "sample document": { "sample identifier": "Plate 4 A11", "location identifier": "A11", @@ -13862,6 +13857,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13869,14 +13869,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "device control aggregate document": { "device control document": [ { @@ -13909,6 +13903,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "sample document": { "sample identifier": "Plate 4 A12", "location identifier": "A12", @@ -13921,6 +13916,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13928,14 +13928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "device control aggregate document": { "device control document": [ { @@ -13968,6 +13962,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "sample document": { "sample identifier": "Plate 4 B1", "location identifier": "B1", @@ -13980,6 +13975,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -13987,14 +13987,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "device control aggregate document": { "device control document": [ { @@ -14027,6 +14021,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "sample document": { "sample identifier": "Plate 4 B2", "location identifier": "B2", @@ -14039,6 +14034,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14046,14 +14046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "device control aggregate document": { "device control document": [ { @@ -14086,6 +14080,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "sample document": { "sample identifier": "Plate 4 B3", "location identifier": "B3", @@ -14098,6 +14093,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14105,14 +14105,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "device control aggregate document": { "device control document": [ { @@ -14145,6 +14139,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "sample document": { "sample identifier": "Plate 4 B4", "location identifier": "B4", @@ -14157,6 +14152,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14164,14 +14164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "device control aggregate document": { "device control document": [ { @@ -14204,6 +14198,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "sample document": { "sample identifier": "Plate 4 B5", "location identifier": "B5", @@ -14216,6 +14211,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14223,14 +14223,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "device control aggregate document": { "device control document": [ { @@ -14263,6 +14257,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "sample document": { "sample identifier": "Plate 4 B6", "location identifier": "B6", @@ -14275,6 +14270,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14282,14 +14282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "device control aggregate document": { "device control document": [ { @@ -14322,6 +14316,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "sample document": { "sample identifier": "Plate 4 B7", "location identifier": "B7", @@ -14334,6 +14329,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14341,14 +14341,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "device control aggregate document": { "device control document": [ { @@ -14381,6 +14375,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "sample document": { "sample identifier": "Plate 4 B8", "location identifier": "B8", @@ -14393,6 +14388,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14400,14 +14400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "device control aggregate document": { "device control document": [ { @@ -14440,6 +14434,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "sample document": { "sample identifier": "Plate 4 B9", "location identifier": "B9", @@ -14452,6 +14447,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14459,14 +14459,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "device control aggregate document": { "device control document": [ { @@ -14499,6 +14493,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "sample document": { "sample identifier": "Plate 4 B10", "location identifier": "B10", @@ -14511,6 +14506,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14518,14 +14518,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "device control aggregate document": { "device control document": [ { @@ -14558,6 +14552,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "sample document": { "sample identifier": "Plate 4 B11", "location identifier": "B11", @@ -14570,6 +14565,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14577,14 +14577,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "device control aggregate document": { "device control document": [ { @@ -14617,6 +14611,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "sample document": { "sample identifier": "Plate 4 B12", "location identifier": "B12", @@ -14629,6 +14624,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14636,14 +14636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "device control aggregate document": { "device control document": [ { @@ -14676,6 +14670,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "sample document": { "sample identifier": "Plate 4 C1", "location identifier": "C1", @@ -14688,6 +14683,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14695,14 +14695,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "device control aggregate document": { "device control document": [ { @@ -14735,6 +14729,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "sample document": { "sample identifier": "Plate 4 C2", "location identifier": "C2", @@ -14747,6 +14742,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14754,14 +14754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "device control aggregate document": { "device control document": [ { @@ -14794,6 +14788,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "sample document": { "sample identifier": "Plate 4 C3", "location identifier": "C3", @@ -14806,6 +14801,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14813,14 +14813,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "device control aggregate document": { "device control document": [ { @@ -14853,6 +14847,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "sample document": { "sample identifier": "Plate 4 C4", "location identifier": "C4", @@ -14865,6 +14860,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14872,14 +14872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "device control aggregate document": { "device control document": [ { @@ -14912,6 +14906,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "sample document": { "sample identifier": "Plate 4 C5", "location identifier": "C5", @@ -14924,21 +14919,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "device control aggregate document": { "device control document": [ { @@ -14971,6 +14965,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "sample document": { "sample identifier": "Plate 4 C6", "location identifier": "C6", @@ -14983,6 +14978,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -14990,14 +14990,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "device control aggregate document": { "device control document": [ { @@ -15030,6 +15024,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "sample document": { "sample identifier": "Plate 4 C7", "location identifier": "C7", @@ -15042,6 +15037,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15049,14 +15049,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "device control aggregate document": { "device control document": [ { @@ -15089,6 +15083,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "sample document": { "sample identifier": "Plate 4 C8", "location identifier": "C8", @@ -15101,6 +15096,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15108,14 +15108,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "device control aggregate document": { "device control document": [ { @@ -15148,6 +15142,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "sample document": { "sample identifier": "Plate 4 C9", "location identifier": "C9", @@ -15160,6 +15155,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15167,14 +15167,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "device control aggregate document": { "device control document": [ { @@ -15207,6 +15201,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "sample document": { "sample identifier": "Plate 4 C10", "location identifier": "C10", @@ -15219,6 +15214,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15226,14 +15226,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "device control aggregate document": { "device control document": [ { @@ -15266,6 +15260,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "sample document": { "sample identifier": "Plate 4 C11", "location identifier": "C11", @@ -15278,6 +15273,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15285,14 +15285,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "device control aggregate document": { "device control document": [ { @@ -15325,6 +15319,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "sample document": { "sample identifier": "Plate 4 C12", "location identifier": "C12", @@ -15337,6 +15332,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15344,14 +15344,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "device control aggregate document": { "device control document": [ { @@ -15384,6 +15378,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "sample document": { "sample identifier": "Plate 4 D1", "location identifier": "D1", @@ -15396,6 +15391,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15403,14 +15403,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "device control aggregate document": { "device control document": [ { @@ -15443,6 +15437,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "sample document": { "sample identifier": "Plate 4 D2", "location identifier": "D2", @@ -15455,6 +15450,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15462,14 +15462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "device control aggregate document": { "device control document": [ { @@ -15502,6 +15496,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "sample document": { "sample identifier": "Plate 4 D3", "location identifier": "D3", @@ -15514,6 +15509,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15521,14 +15521,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "device control aggregate document": { "device control document": [ { @@ -15561,6 +15555,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "sample document": { "sample identifier": "Plate 4 D4", "location identifier": "D4", @@ -15573,6 +15568,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15580,14 +15580,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "device control aggregate document": { "device control document": [ { @@ -15620,6 +15614,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "sample document": { "sample identifier": "Plate 4 D5", "location identifier": "D5", @@ -15632,6 +15627,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15639,14 +15639,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "device control aggregate document": { "device control document": [ { @@ -15679,6 +15673,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "sample document": { "sample identifier": "Plate 4 D6", "location identifier": "D6", @@ -15691,6 +15686,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15698,14 +15698,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "device control aggregate document": { "device control document": [ { @@ -15738,6 +15732,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "sample document": { "sample identifier": "Plate 4 D7", "location identifier": "D7", @@ -15750,6 +15745,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15757,14 +15757,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "device control aggregate document": { "device control document": [ { @@ -15797,6 +15791,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "sample document": { "sample identifier": "Plate 4 D8", "location identifier": "D8", @@ -15809,6 +15804,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15816,14 +15816,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "device control aggregate document": { "device control document": [ { @@ -15856,6 +15850,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "sample document": { "sample identifier": "Plate 4 D9", "location identifier": "D9", @@ -15868,6 +15863,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15875,14 +15875,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "device control aggregate document": { "device control document": [ { @@ -15915,6 +15909,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "sample document": { "sample identifier": "Plate 4 D10", "location identifier": "D10", @@ -15927,6 +15922,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15934,14 +15934,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "device control aggregate document": { "device control document": [ { @@ -15974,6 +15968,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "sample document": { "sample identifier": "Plate 4 D11", "location identifier": "D11", @@ -15986,6 +15981,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -15993,14 +15993,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "device control aggregate document": { "device control document": [ { @@ -16033,6 +16027,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "sample document": { "sample identifier": "Plate 4 D12", "location identifier": "D12", @@ -16045,6 +16040,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16052,14 +16052,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "device control aggregate document": { "device control document": [ { @@ -16092,6 +16086,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "sample document": { "sample identifier": "Plate 4 E1", "location identifier": "E1", @@ -16104,6 +16099,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16111,14 +16111,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "device control aggregate document": { "device control document": [ { @@ -16151,6 +16145,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "sample document": { "sample identifier": "Plate 4 E2", "location identifier": "E2", @@ -16163,21 +16158,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "device control aggregate document": { "device control document": [ { @@ -16210,6 +16204,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "sample document": { "sample identifier": "Plate 4 E3", "location identifier": "E3", @@ -16222,6 +16217,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16229,14 +16229,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "device control aggregate document": { "device control document": [ { @@ -16269,6 +16263,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "sample document": { "sample identifier": "Plate 4 E4", "location identifier": "E4", @@ -16281,6 +16276,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16288,14 +16288,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "device control aggregate document": { "device control document": [ { @@ -16328,6 +16322,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "sample document": { "sample identifier": "Plate 4 E5", "location identifier": "E5", @@ -16340,6 +16335,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16347,14 +16347,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "device control aggregate document": { "device control document": [ { @@ -16387,6 +16381,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "sample document": { "sample identifier": "Plate 4 E6", "location identifier": "E6", @@ -16399,6 +16394,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16406,14 +16406,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "device control aggregate document": { "device control document": [ { @@ -16446,6 +16440,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "sample document": { "sample identifier": "Plate 4 E7", "location identifier": "E7", @@ -16458,6 +16453,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16465,14 +16465,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "device control aggregate document": { "device control document": [ { @@ -16505,6 +16499,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "sample document": { "sample identifier": "Plate 4 E8", "location identifier": "E8", @@ -16517,6 +16512,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16524,14 +16524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "device control aggregate document": { "device control document": [ { @@ -16564,6 +16558,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "sample document": { "sample identifier": "Plate 4 E9", "location identifier": "E9", @@ -16576,6 +16571,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16583,14 +16583,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "device control aggregate document": { "device control document": [ { @@ -16623,6 +16617,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "sample document": { "sample identifier": "Plate 4 E10", "location identifier": "E10", @@ -16635,6 +16630,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16642,14 +16642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "device control aggregate document": { "device control document": [ { @@ -16682,6 +16676,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "sample document": { "sample identifier": "Plate 4 E11", "location identifier": "E11", @@ -16694,6 +16689,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16701,14 +16701,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "device control aggregate document": { "device control document": [ { @@ -16741,6 +16735,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "sample document": { "sample identifier": "Plate 4 E12", "location identifier": "E12", @@ -16753,6 +16748,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16760,14 +16760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "device control aggregate document": { "device control document": [ { @@ -16800,6 +16794,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "sample document": { "sample identifier": "Plate 4 F1", "location identifier": "F1", @@ -16812,6 +16807,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16819,14 +16819,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "device control aggregate document": { "device control document": [ { @@ -16859,6 +16853,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "sample document": { "sample identifier": "Plate 4 F2", "location identifier": "F2", @@ -16871,6 +16866,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16878,14 +16878,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "device control aggregate document": { "device control document": [ { @@ -16918,6 +16912,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "sample document": { "sample identifier": "Plate 4 F3", "location identifier": "F3", @@ -16930,6 +16925,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16937,14 +16937,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "device control aggregate document": { "device control document": [ { @@ -16977,6 +16971,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "sample document": { "sample identifier": "Plate 4 F4", "location identifier": "F4", @@ -16989,6 +16984,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -16996,14 +16996,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "device control aggregate document": { "device control document": [ { @@ -17036,6 +17030,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "sample document": { "sample identifier": "Plate 4 F5", "location identifier": "F5", @@ -17048,6 +17043,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17055,14 +17055,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "device control aggregate document": { "device control document": [ { @@ -17095,6 +17089,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "sample document": { "sample identifier": "Plate 4 F6", "location identifier": "F6", @@ -17107,6 +17102,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17114,14 +17114,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "device control aggregate document": { "device control document": [ { @@ -17154,6 +17148,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "sample document": { "sample identifier": "Plate 4 F7", "location identifier": "F7", @@ -17166,6 +17161,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17173,14 +17173,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "device control aggregate document": { "device control document": [ { @@ -17213,6 +17207,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "sample document": { "sample identifier": "Plate 4 F8", "location identifier": "F8", @@ -17225,6 +17220,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17232,14 +17232,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "device control aggregate document": { "device control document": [ { @@ -17272,6 +17266,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "sample document": { "sample identifier": "Plate 4 F9", "location identifier": "F9", @@ -17284,6 +17279,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17291,14 +17291,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "device control aggregate document": { "device control document": [ { @@ -17331,6 +17325,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "sample document": { "sample identifier": "Plate 4 F10", "location identifier": "F10", @@ -17343,6 +17338,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17350,14 +17350,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "device control aggregate document": { "device control document": [ { @@ -17390,6 +17384,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "sample document": { "sample identifier": "Plate 4 F11", "location identifier": "F11", @@ -17402,21 +17397,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "device control aggregate document": { "device control document": [ { @@ -17449,6 +17443,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "sample document": { "sample identifier": "Plate 4 F12", "location identifier": "F12", @@ -17461,6 +17456,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17468,14 +17468,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "device control aggregate document": { "device control document": [ { @@ -17508,6 +17502,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "sample document": { "sample identifier": "Plate 4 G1", "location identifier": "G1", @@ -17520,6 +17515,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17527,14 +17527,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "device control aggregate document": { "device control document": [ { @@ -17567,6 +17561,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "sample document": { "sample identifier": "Plate 4 G2", "location identifier": "G2", @@ -17579,6 +17574,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17586,14 +17586,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "device control aggregate document": { "device control document": [ { @@ -17626,6 +17620,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "sample document": { "sample identifier": "Plate 4 G3", "location identifier": "G3", @@ -17638,6 +17633,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17645,14 +17645,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "device control aggregate document": { "device control document": [ { @@ -17685,6 +17679,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "sample document": { "sample identifier": "Plate 4 G4", "location identifier": "G4", @@ -17697,6 +17692,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17704,14 +17704,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "device control aggregate document": { "device control document": [ { @@ -17744,6 +17738,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "sample document": { "sample identifier": "Plate 4 G5", "location identifier": "G5", @@ -17756,6 +17751,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17763,14 +17763,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "device control aggregate document": { "device control document": [ { @@ -17803,6 +17797,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "sample document": { "sample identifier": "Plate 4 G6", "location identifier": "G6", @@ -17815,6 +17810,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17822,14 +17822,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "device control aggregate document": { "device control document": [ { @@ -17862,6 +17856,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "sample document": { "sample identifier": "Plate 4 G7", "location identifier": "G7", @@ -17874,6 +17869,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17881,14 +17881,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "device control aggregate document": { "device control document": [ { @@ -17921,6 +17915,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "sample document": { "sample identifier": "Plate 4 G8", "location identifier": "G8", @@ -17933,6 +17928,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17940,14 +17940,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "device control aggregate document": { "device control document": [ { @@ -17980,6 +17974,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "sample document": { "sample identifier": "Plate 4 G9", "location identifier": "G9", @@ -17992,6 +17987,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -17999,14 +17999,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "device control aggregate document": { "device control document": [ { @@ -18039,6 +18033,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "sample document": { "sample identifier": "Plate 4 G10", "location identifier": "G10", @@ -18051,6 +18046,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18058,14 +18058,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "device control aggregate document": { "device control document": [ { @@ -18098,6 +18092,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "sample document": { "sample identifier": "Plate 4 G11", "location identifier": "G11", @@ -18110,6 +18105,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18117,14 +18117,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "device control aggregate document": { "device control document": [ { @@ -18157,6 +18151,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "sample document": { "sample identifier": "Plate 4 G12", "location identifier": "G12", @@ -18169,6 +18164,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18176,14 +18176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "device control aggregate document": { "device control document": [ { @@ -18216,6 +18210,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "sample document": { "sample identifier": "Plate 4 H1", "location identifier": "H1", @@ -18228,6 +18223,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18235,14 +18235,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "device control aggregate document": { "device control document": [ { @@ -18275,6 +18269,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "sample document": { "sample identifier": "Plate 4 H2", "location identifier": "H2", @@ -18287,6 +18282,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18294,14 +18294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "device control aggregate document": { "device control document": [ { @@ -18334,6 +18328,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "sample document": { "sample identifier": "Plate 4 H3", "location identifier": "H3", @@ -18346,6 +18341,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18353,14 +18353,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "device control aggregate document": { "device control document": [ { @@ -18393,6 +18387,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "sample document": { "sample identifier": "Plate 4 H4", "location identifier": "H4", @@ -18405,6 +18400,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18412,14 +18412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "device control aggregate document": { "device control document": [ { @@ -18452,6 +18446,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "sample document": { "sample identifier": "Plate 4 H5", "location identifier": "H5", @@ -18464,6 +18459,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18471,14 +18471,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "device control aggregate document": { "device control document": [ { @@ -18511,6 +18505,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "sample document": { "sample identifier": "Plate 4 H6", "location identifier": "H6", @@ -18523,6 +18518,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18530,14 +18530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "device control aggregate document": { "device control document": [ { @@ -18570,6 +18564,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "sample document": { "sample identifier": "Plate 4 H7", "location identifier": "H7", @@ -18582,6 +18577,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18589,14 +18589,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "device control aggregate document": { "device control document": [ { @@ -18629,6 +18623,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "sample document": { "sample identifier": "Plate 4 H8", "location identifier": "H8", @@ -18641,21 +18636,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "device control aggregate document": { "device control document": [ { @@ -18688,6 +18682,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "sample document": { "sample identifier": "Plate 4 H9", "location identifier": "H9", @@ -18700,6 +18695,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18707,14 +18707,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "device control aggregate document": { "device control document": [ { @@ -18747,6 +18741,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "sample document": { "sample identifier": "Plate 4 H10", "location identifier": "H10", @@ -18759,6 +18754,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18766,14 +18766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "device control aggregate document": { "device control document": [ { @@ -18806,6 +18800,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "sample document": { "sample identifier": "Plate 4 H11", "location identifier": "H11", @@ -18818,6 +18813,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18825,14 +18825,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "device control aggregate document": { "device control document": [ { @@ -18865,6 +18859,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "sample document": { "sample identifier": "Plate 4 H12", "location identifier": "H12", @@ -18877,6 +18872,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18884,14 +18884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "device control aggregate document": { "device control document": [ { @@ -18924,6 +18918,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "sample document": { "sample identifier": "Plate 5 A1", "location identifier": "A1", @@ -18936,6 +18931,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -18943,14 +18943,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "device control aggregate document": { "device control document": [ { @@ -18983,6 +18977,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "sample document": { "sample identifier": "Plate 5 A2", "location identifier": "A2", @@ -18995,6 +18990,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19002,14 +19002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "device control aggregate document": { "device control document": [ { @@ -19042,6 +19036,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "sample document": { "sample identifier": "Plate 5 A3", "location identifier": "A3", @@ -19054,6 +19049,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19061,14 +19061,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "device control aggregate document": { "device control document": [ { @@ -19101,6 +19095,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "sample document": { "sample identifier": "Plate 5 A4", "location identifier": "A4", @@ -19113,6 +19108,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19120,14 +19120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "device control aggregate document": { "device control document": [ { @@ -19160,6 +19154,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "sample document": { "sample identifier": "Plate 5 A5", "location identifier": "A5", @@ -19172,6 +19167,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19179,14 +19179,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "device control aggregate document": { "device control document": [ { @@ -19219,6 +19213,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "sample document": { "sample identifier": "Plate 5 A6", "location identifier": "A6", @@ -19231,6 +19226,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19238,14 +19238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "device control aggregate document": { "device control document": [ { @@ -19278,6 +19272,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "sample document": { "sample identifier": "Plate 5 A7", "location identifier": "A7", @@ -19290,6 +19285,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19297,14 +19297,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "device control aggregate document": { "device control document": [ { @@ -19337,6 +19331,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "sample document": { "sample identifier": "Plate 5 A8", "location identifier": "A8", @@ -19349,6 +19344,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19356,14 +19356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "device control aggregate document": { "device control document": [ { @@ -19396,6 +19390,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "sample document": { "sample identifier": "Plate 5 A9", "location identifier": "A9", @@ -19408,6 +19403,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19415,14 +19415,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "device control aggregate document": { "device control document": [ { @@ -19455,6 +19449,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "sample document": { "sample identifier": "Plate 5 A10", "location identifier": "A10", @@ -19467,6 +19462,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19474,14 +19474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "device control aggregate document": { "device control document": [ { @@ -19514,6 +19508,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "sample document": { "sample identifier": "Plate 5 A11", "location identifier": "A11", @@ -19526,6 +19521,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19533,14 +19533,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "device control aggregate document": { "device control document": [ { @@ -19573,6 +19567,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "sample document": { "sample identifier": "Plate 5 A12", "location identifier": "A12", @@ -19585,6 +19580,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19592,14 +19592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "device control aggregate document": { "device control document": [ { @@ -19632,6 +19626,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "sample document": { "sample identifier": "Plate 5 B1", "location identifier": "B1", @@ -19644,6 +19639,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19651,14 +19651,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "device control aggregate document": { "device control document": [ { @@ -19691,6 +19685,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "sample document": { "sample identifier": "Plate 5 B2", "location identifier": "B2", @@ -19703,6 +19698,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19710,14 +19710,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "device control aggregate document": { "device control document": [ { @@ -19750,6 +19744,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "sample document": { "sample identifier": "Plate 5 B3", "location identifier": "B3", @@ -19762,6 +19757,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19769,14 +19769,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "device control aggregate document": { "device control document": [ { @@ -19809,6 +19803,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "sample document": { "sample identifier": "Plate 5 B4", "location identifier": "B4", @@ -19821,6 +19816,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19828,14 +19828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "device control aggregate document": { "device control document": [ { @@ -19868,6 +19862,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "sample document": { "sample identifier": "Plate 5 B5", "location identifier": "B5", @@ -19880,21 +19875,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "device control aggregate document": { "device control document": [ { @@ -19927,6 +19921,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "sample document": { "sample identifier": "Plate 5 B6", "location identifier": "B6", @@ -19939,6 +19934,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -19946,14 +19946,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "device control aggregate document": { "device control document": [ { @@ -19986,6 +19980,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "sample document": { "sample identifier": "Plate 5 B7", "location identifier": "B7", @@ -19998,6 +19993,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20005,14 +20005,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "device control aggregate document": { "device control document": [ { @@ -20045,6 +20039,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "sample document": { "sample identifier": "Plate 5 B8", "location identifier": "B8", @@ -20057,6 +20052,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20064,14 +20064,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "device control aggregate document": { "device control document": [ { @@ -20104,6 +20098,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "sample document": { "sample identifier": "Plate 5 B9", "location identifier": "B9", @@ -20116,6 +20111,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20123,14 +20123,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "device control aggregate document": { "device control document": [ { @@ -20163,6 +20157,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "sample document": { "sample identifier": "Plate 5 B10", "location identifier": "B10", @@ -20175,6 +20170,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20182,14 +20182,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "device control aggregate document": { "device control document": [ { @@ -20222,6 +20216,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "sample document": { "sample identifier": "Plate 5 B11", "location identifier": "B11", @@ -20234,6 +20229,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20241,14 +20241,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "device control aggregate document": { "device control document": [ { @@ -20281,6 +20275,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "sample document": { "sample identifier": "Plate 5 B12", "location identifier": "B12", @@ -20293,6 +20288,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20300,14 +20300,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "device control aggregate document": { "device control document": [ { @@ -20340,6 +20334,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "sample document": { "sample identifier": "Plate 5 C1", "location identifier": "C1", @@ -20352,6 +20347,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20359,14 +20359,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "device control aggregate document": { "device control document": [ { @@ -20399,6 +20393,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "sample document": { "sample identifier": "Plate 5 C2", "location identifier": "C2", @@ -20411,6 +20406,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20418,14 +20418,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "device control aggregate document": { "device control document": [ { @@ -20458,6 +20452,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "sample document": { "sample identifier": "Plate 5 C3", "location identifier": "C3", @@ -20470,6 +20465,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20477,14 +20477,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "device control aggregate document": { "device control document": [ { @@ -20517,6 +20511,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "sample document": { "sample identifier": "Plate 5 C4", "location identifier": "C4", @@ -20529,6 +20524,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20536,14 +20536,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "device control aggregate document": { "device control document": [ { @@ -20576,6 +20570,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "sample document": { "sample identifier": "Plate 5 C5", "location identifier": "C5", @@ -20588,6 +20583,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20595,14 +20595,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "device control aggregate document": { "device control document": [ { @@ -20635,6 +20629,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "sample document": { "sample identifier": "Plate 5 C6", "location identifier": "C6", @@ -20647,6 +20642,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20654,14 +20654,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "device control aggregate document": { "device control document": [ { @@ -20694,6 +20688,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "sample document": { "sample identifier": "Plate 5 C7", "location identifier": "C7", @@ -20706,6 +20701,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20713,14 +20713,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "device control aggregate document": { "device control document": [ { @@ -20753,6 +20747,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "sample document": { "sample identifier": "Plate 5 C8", "location identifier": "C8", @@ -20765,6 +20760,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20772,14 +20772,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "device control aggregate document": { "device control document": [ { @@ -20812,6 +20806,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "sample document": { "sample identifier": "Plate 5 C9", "location identifier": "C9", @@ -20824,6 +20819,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20831,14 +20831,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "device control aggregate document": { "device control document": [ { @@ -20871,6 +20865,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "sample document": { "sample identifier": "Plate 5 C10", "location identifier": "C10", @@ -20883,6 +20878,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20890,14 +20890,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "device control aggregate document": { "device control document": [ { @@ -20930,6 +20924,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "sample document": { "sample identifier": "Plate 5 C11", "location identifier": "C11", @@ -20942,6 +20937,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -20949,14 +20949,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "device control aggregate document": { "device control document": [ { @@ -20989,6 +20983,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "sample document": { "sample identifier": "Plate 5 C12", "location identifier": "C12", @@ -21001,6 +20996,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21008,14 +21008,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "device control aggregate document": { "device control document": [ { @@ -21048,6 +21042,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "sample document": { "sample identifier": "Plate 5 D1", "location identifier": "D1", @@ -21060,6 +21055,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21067,14 +21067,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "device control aggregate document": { "device control document": [ { @@ -21107,6 +21101,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "sample document": { "sample identifier": "Plate 5 D2", "location identifier": "D2", @@ -21119,21 +21114,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "device control aggregate document": { "device control document": [ { @@ -21166,6 +21160,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "sample document": { "sample identifier": "Plate 5 D3", "location identifier": "D3", @@ -21178,6 +21173,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21185,14 +21185,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "device control aggregate document": { "device control document": [ { @@ -21225,6 +21219,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "sample document": { "sample identifier": "Plate 5 D4", "location identifier": "D4", @@ -21237,6 +21232,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21244,14 +21244,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "device control aggregate document": { "device control document": [ { @@ -21284,6 +21278,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "sample document": { "sample identifier": "Plate 5 D5", "location identifier": "D5", @@ -21296,6 +21291,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21303,14 +21303,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "device control aggregate document": { "device control document": [ { @@ -21343,6 +21337,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "sample document": { "sample identifier": "Plate 5 D6", "location identifier": "D6", @@ -21355,6 +21350,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21362,14 +21362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "device control aggregate document": { "device control document": [ { @@ -21402,6 +21396,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "sample document": { "sample identifier": "Plate 5 D7", "location identifier": "D7", @@ -21414,6 +21409,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21421,14 +21421,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "device control aggregate document": { "device control document": [ { @@ -21461,6 +21455,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "sample document": { "sample identifier": "Plate 5 D8", "location identifier": "D8", @@ -21473,6 +21468,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21480,14 +21480,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "device control aggregate document": { "device control document": [ { @@ -21520,6 +21514,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "sample document": { "sample identifier": "Plate 5 D9", "location identifier": "D9", @@ -21532,6 +21527,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21539,14 +21539,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "device control aggregate document": { "device control document": [ { @@ -21579,6 +21573,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "sample document": { "sample identifier": "Plate 5 D10", "location identifier": "D10", @@ -21591,6 +21586,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21598,14 +21598,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "device control aggregate document": { "device control document": [ { @@ -21638,6 +21632,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "sample document": { "sample identifier": "Plate 5 D11", "location identifier": "D11", @@ -21650,6 +21645,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21657,14 +21657,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "device control aggregate document": { "device control document": [ { @@ -21697,6 +21691,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "sample document": { "sample identifier": "Plate 5 D12", "location identifier": "D12", @@ -21709,6 +21704,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21716,14 +21716,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "device control aggregate document": { "device control document": [ { @@ -21756,6 +21750,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "sample document": { "sample identifier": "Plate 5 E1", "location identifier": "E1", @@ -21768,6 +21763,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21775,14 +21775,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "device control aggregate document": { "device control document": [ { @@ -21815,6 +21809,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "sample document": { "sample identifier": "Plate 5 E2", "location identifier": "E2", @@ -21827,6 +21822,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21834,14 +21834,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "device control aggregate document": { "device control document": [ { @@ -21874,6 +21868,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "sample document": { "sample identifier": "Plate 5 E3", "location identifier": "E3", @@ -21886,6 +21881,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21893,14 +21893,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "device control aggregate document": { "device control document": [ { @@ -21933,6 +21927,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "sample document": { "sample identifier": "Plate 5 E4", "location identifier": "E4", @@ -21945,6 +21940,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -21952,14 +21952,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "device control aggregate document": { "device control document": [ { @@ -21992,6 +21986,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "sample document": { "sample identifier": "Plate 5 E5", "location identifier": "E5", @@ -22004,6 +21999,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22011,14 +22011,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "device control aggregate document": { "device control document": [ { @@ -22051,6 +22045,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "sample document": { "sample identifier": "Plate 5 E6", "location identifier": "E6", @@ -22063,6 +22058,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22070,14 +22070,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "device control aggregate document": { "device control document": [ { @@ -22110,6 +22104,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "sample document": { "sample identifier": "Plate 5 E7", "location identifier": "E7", @@ -22122,6 +22117,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22129,14 +22129,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "device control aggregate document": { "device control document": [ { @@ -22169,6 +22163,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "sample document": { "sample identifier": "Plate 5 E8", "location identifier": "E8", @@ -22181,6 +22176,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22188,14 +22188,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "device control aggregate document": { "device control document": [ { @@ -22228,6 +22222,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "sample document": { "sample identifier": "Plate 5 E9", "location identifier": "E9", @@ -22240,6 +22235,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22247,14 +22247,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "device control aggregate document": { "device control document": [ { @@ -22287,6 +22281,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "sample document": { "sample identifier": "Plate 5 E10", "location identifier": "E10", @@ -22299,6 +22294,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22306,14 +22306,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "device control aggregate document": { "device control document": [ { @@ -22346,6 +22340,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "sample document": { "sample identifier": "Plate 5 E11", "location identifier": "E11", @@ -22358,21 +22353,20 @@ } } ], - "analytical method identifier": "100187", - "experimental data identifier": "3564", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2022-11-10T15:09:33+00:00", "plate well count": { "value": 96.0, "unit": "#" }, + "analytical method identifier": "100187", + "experimental data identifier": "3564", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "device control aggregate document": { "device control document": [ { @@ -22405,6 +22399,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "sample document": { "sample identifier": "Plate 5 E12", "location identifier": "E12", @@ -22417,6 +22412,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22424,14 +22424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "device control aggregate document": { "device control document": [ { @@ -22464,6 +22458,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "sample document": { "sample identifier": "Plate 5 F1", "location identifier": "F1", @@ -22476,6 +22471,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22483,14 +22483,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "device control aggregate document": { "device control document": [ { @@ -22523,6 +22517,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "sample document": { "sample identifier": "Plate 5 F2", "location identifier": "F2", @@ -22535,6 +22530,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22542,14 +22542,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "device control aggregate document": { "device control document": [ { @@ -22582,6 +22576,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "sample document": { "sample identifier": "Plate 5 F3", "location identifier": "F3", @@ -22594,6 +22589,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22601,14 +22601,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "device control aggregate document": { "device control document": [ { @@ -22641,6 +22635,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "sample document": { "sample identifier": "Plate 5 F4", "location identifier": "F4", @@ -22653,6 +22648,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22660,14 +22660,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "device control aggregate document": { "device control document": [ { @@ -22700,6 +22694,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "sample document": { "sample identifier": "Plate 5 F5", "location identifier": "F5", @@ -22712,6 +22707,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22719,14 +22719,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "device control aggregate document": { "device control document": [ { @@ -22759,6 +22753,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "sample document": { "sample identifier": "Plate 5 F6", "location identifier": "F6", @@ -22771,6 +22766,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22778,14 +22778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "device control aggregate document": { "device control document": [ { @@ -22818,6 +22812,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "sample document": { "sample identifier": "Plate 5 F7", "location identifier": "F7", @@ -22830,6 +22825,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22837,14 +22837,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "device control aggregate document": { "device control document": [ { @@ -22877,6 +22871,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "sample document": { "sample identifier": "Plate 5 F8", "location identifier": "F8", @@ -22889,6 +22884,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22896,14 +22896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "device control aggregate document": { "device control document": [ { @@ -22936,6 +22930,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "sample document": { "sample identifier": "Plate 5 F9", "location identifier": "F9", @@ -22948,6 +22943,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -22955,14 +22955,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "device control aggregate document": { "device control document": [ { @@ -22995,6 +22989,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "sample document": { "sample identifier": "Plate 5 F10", "location identifier": "F10", @@ -23007,6 +23002,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23014,14 +23014,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "device control aggregate document": { "device control document": [ { @@ -23054,6 +23048,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "sample document": { "sample identifier": "Plate 5 F11", "location identifier": "F11", @@ -23066,6 +23061,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23073,14 +23073,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "device control aggregate document": { "device control document": [ { @@ -23113,6 +23107,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "sample document": { "sample identifier": "Plate 5 F12", "location identifier": "F12", @@ -23125,6 +23120,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23132,14 +23132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "device control aggregate document": { "device control document": [ { @@ -23172,6 +23166,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "sample document": { "sample identifier": "Plate 5 G1", "location identifier": "G1", @@ -23184,6 +23179,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23191,14 +23191,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "device control aggregate document": { "device control document": [ { @@ -23231,6 +23225,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "sample document": { "sample identifier": "Plate 5 G2", "location identifier": "G2", @@ -23243,6 +23238,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23250,14 +23250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "device control aggregate document": { "device control document": [ { @@ -23290,6 +23284,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "sample document": { "sample identifier": "Plate 5 G3", "location identifier": "G3", @@ -23302,6 +23297,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23309,14 +23309,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "device control aggregate document": { "device control document": [ { @@ -23349,6 +23343,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "sample document": { "sample identifier": "Plate 5 G4", "location identifier": "G4", @@ -23361,6 +23356,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23368,14 +23368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "device control aggregate document": { "device control document": [ { @@ -23408,6 +23402,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "sample document": { "sample identifier": "Plate 5 G5", "location identifier": "G5", @@ -23420,6 +23415,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23427,14 +23427,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "device control aggregate document": { "device control document": [ { @@ -23467,6 +23461,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "sample document": { "sample identifier": "Plate 5 G6", "location identifier": "G6", @@ -23479,6 +23474,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23486,14 +23486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "device control aggregate document": { "device control document": [ { @@ -23526,6 +23520,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "sample document": { "sample identifier": "Plate 5 G7", "location identifier": "G7", @@ -23538,6 +23533,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23545,14 +23545,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "device control aggregate document": { "device control document": [ { @@ -23585,6 +23579,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "sample document": { "sample identifier": "Plate 5 G8", "location identifier": "G8", @@ -23597,6 +23592,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23604,14 +23604,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "device control aggregate document": { "device control document": [ { @@ -23644,6 +23638,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "sample document": { "sample identifier": "Plate 5 G9", "location identifier": "G9", @@ -23656,6 +23651,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23663,14 +23663,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "device control aggregate document": { "device control document": [ { @@ -23703,6 +23697,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "sample document": { "sample identifier": "Plate 5 G10", "location identifier": "G10", @@ -23715,6 +23710,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23722,14 +23722,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "device control aggregate document": { "device control document": [ { @@ -23762,6 +23756,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "sample document": { "sample identifier": "Plate 5 G11", "location identifier": "G11", @@ -23774,6 +23769,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23781,14 +23781,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "device control aggregate document": { "device control document": [ { @@ -23821,6 +23815,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "sample document": { "sample identifier": "Plate 5 G12", "location identifier": "G12", @@ -23833,6 +23828,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23840,14 +23840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "device control aggregate document": { "device control document": [ { @@ -23880,6 +23874,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "sample document": { "sample identifier": "Plate 5 H1", "location identifier": "H1", @@ -23892,6 +23887,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23899,14 +23899,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "device control aggregate document": { "device control document": [ { @@ -23939,6 +23933,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "sample document": { "sample identifier": "Plate 5 H2", "location identifier": "H2", @@ -23951,6 +23946,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -23958,14 +23958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "device control aggregate document": { "device control document": [ { @@ -23998,6 +23992,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "sample document": { "sample identifier": "Plate 5 H3", "location identifier": "H3", @@ -24010,6 +24005,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24017,14 +24017,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "device control aggregate document": { "device control document": [ { @@ -24057,6 +24051,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "sample document": { "sample identifier": "Plate 5 H4", "location identifier": "H4", @@ -24069,6 +24064,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24076,14 +24076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "device control aggregate document": { "device control document": [ { @@ -24116,6 +24110,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "sample document": { "sample identifier": "Plate 5 H5", "location identifier": "H5", @@ -24128,6 +24123,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24135,14 +24135,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "device control aggregate document": { "device control document": [ { @@ -24175,6 +24169,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "sample document": { "sample identifier": "Plate 5 H6", "location identifier": "H6", @@ -24187,6 +24182,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24194,14 +24194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "device control aggregate document": { "device control document": [ { @@ -24234,6 +24228,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "sample document": { "sample identifier": "Plate 5 H7", "location identifier": "H7", @@ -24246,6 +24241,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24253,14 +24253,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "device control aggregate document": { "device control document": [ { @@ -24293,6 +24287,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "sample document": { "sample identifier": "Plate 5 H8", "location identifier": "H8", @@ -24305,6 +24300,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24312,14 +24312,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "device control aggregate document": { "device control document": [ { @@ -24352,6 +24346,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "sample document": { "sample identifier": "Plate 5 H9", "location identifier": "H9", @@ -24364,6 +24359,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24371,14 +24371,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "device control aggregate document": { "device control document": [ { @@ -24411,6 +24405,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "sample document": { "sample identifier": "Plate 5 H10", "location identifier": "H10", @@ -24423,6 +24418,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24430,14 +24430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "device control aggregate document": { "device control document": [ { @@ -24470,6 +24464,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "sample document": { "sample identifier": "Plate 5 H11", "location identifier": "H11", @@ -24482,6 +24477,11 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" @@ -24489,14 +24489,8 @@ }, { "measurement aggregate document": { - "measurement time": "2022-11-10T15:09:33+00:00", - "plate well count": { - "value": 96.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "device control aggregate document": { "device control document": [ { @@ -24529,6 +24523,7 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "sample document": { "sample identifier": "Plate 5 H12", "location identifier": "H12", @@ -24541,26 +24536,31 @@ } } ], + "measurement time": "2022-11-10T15:09:33+00:00", + "plate well count": { + "value": 96.0, + "unit": "#" + }, "analytical method identifier": "100187", "experimental data identifier": "3564", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision", - "model number": "EnVision", - "equipment serial number": "1041584" - }, "data system document": { + "ASM file identifier": "PE_Envision_fluorescence_example02.json", + "data system instance identifier": "N/A", "file name": "PE_Envision_fluorescence_example02.csv", - "ASM file identifier": "N/A", "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.13.3009.1409", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.13.3009.1409" + }, + "device system document": { + "device identifier": "EnVision", + "model number": "EnVision", + "equipment serial number": "1041584" } } } diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json index 31b741c30..7f4ea88c3 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example03.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "device control aggregate document": { "device control document": [ { @@ -24,22 +18,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", "sample document": { "sample identifier": "LoP_pool A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 512740, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 512740, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -47,14 +47,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "device control aggregate document": { "device control document": [ { @@ -67,22 +61,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", "sample document": { "sample identifier": "LoP_pool A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 43140, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 43140, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -90,14 +90,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "device control aggregate document": { "device control document": [ { @@ -110,22 +104,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", "sample document": { "sample identifier": "LoP_pool A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27244, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27244, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -133,14 +133,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "device control aggregate document": { "device control document": [ { @@ -153,22 +147,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", "sample document": { "sample identifier": "LoP_pool A4", "location identifier": "A4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26600, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26600, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -176,14 +176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "device control aggregate document": { "device control document": [ { @@ -196,22 +190,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", "sample document": { "sample identifier": "LoP_pool A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28196, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28196, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -219,14 +219,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "device control aggregate document": { "device control document": [ { @@ -239,22 +233,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", "sample document": { "sample identifier": "LoP_pool A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27196, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27196, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -262,14 +262,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "device control aggregate document": { "device control document": [ { @@ -282,22 +276,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", "sample document": { "sample identifier": "LoP_pool A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25632, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25632, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -305,14 +305,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "device control aggregate document": { "device control document": [ { @@ -325,22 +319,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", "sample document": { "sample identifier": "LoP_pool A8", "location identifier": "A8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26780, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26780, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -348,14 +348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "device control aggregate document": { "device control document": [ { @@ -368,22 +362,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", "sample document": { "sample identifier": "LoP_pool A9", "location identifier": "A9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27820, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27820, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -391,14 +391,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "device control aggregate document": { "device control document": [ { @@ -411,22 +405,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", "sample document": { "sample identifier": "LoP_pool A10", "location identifier": "A10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25996, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25996, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -434,14 +434,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "device control aggregate document": { "device control document": [ { @@ -454,22 +448,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", "sample document": { "sample identifier": "LoP_pool A11", "location identifier": "A11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27444, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27444, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -477,14 +477,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "device control aggregate document": { "device control document": [ { @@ -497,22 +491,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", "sample document": { "sample identifier": "LoP_pool A12", "location identifier": "A12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28504, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28504, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -520,14 +520,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "device control aggregate document": { "device control document": [ { @@ -540,37 +534,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", "sample document": { "sample identifier": "LoP_pool A13", "location identifier": "A13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26408, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26408, + "unit": "RFU" } } ], - "analytical method identifier": "100130", + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, + "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" } }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "device control aggregate document": { "device control document": [ { @@ -583,22 +577,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", "sample document": { "sample identifier": "LoP_pool A14", "location identifier": "A14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26804, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26804, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -606,14 +606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "device control aggregate document": { "device control document": [ { @@ -626,22 +620,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", "sample document": { "sample identifier": "LoP_pool A15", "location identifier": "A15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25936, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25936, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -649,14 +649,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "device control aggregate document": { "device control document": [ { @@ -669,22 +663,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", "sample document": { "sample identifier": "LoP_pool A16", "location identifier": "A16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26040, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26040, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -692,14 +692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "device control aggregate document": { "device control document": [ { @@ -712,22 +706,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", "sample document": { "sample identifier": "LoP_pool A17", "location identifier": "A17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26856, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26856, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -735,14 +735,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "device control aggregate document": { "device control document": [ { @@ -755,22 +749,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", "sample document": { "sample identifier": "LoP_pool A18", "location identifier": "A18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27108, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27108, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -778,14 +778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "device control aggregate document": { "device control document": [ { @@ -798,22 +792,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", "sample document": { "sample identifier": "LoP_pool A19", "location identifier": "A19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25632, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25632, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -821,14 +821,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "device control aggregate document": { "device control document": [ { @@ -841,22 +835,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", "sample document": { "sample identifier": "LoP_pool A20", "location identifier": "A20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27200, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27200, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -864,14 +864,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "device control aggregate document": { "device control document": [ { @@ -884,22 +878,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", "sample document": { "sample identifier": "LoP_pool A21", "location identifier": "A21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26776, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26776, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -907,14 +907,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "device control aggregate document": { "device control document": [ { @@ -927,22 +921,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", "sample document": { "sample identifier": "LoP_pool A22", "location identifier": "A22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26076, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26076, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -950,14 +950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "device control aggregate document": { "device control document": [ { @@ -970,22 +964,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", "sample document": { "sample identifier": "LoP_pool A23", "location identifier": "A23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25920, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25920, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -993,14 +993,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "device control aggregate document": { "device control document": [ { @@ -1013,22 +1007,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", "sample document": { "sample identifier": "LoP_pool A24", "location identifier": "A24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 554048, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 554048, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1036,14 +1036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "device control aggregate document": { "device control document": [ { @@ -1056,22 +1050,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", "sample document": { "sample identifier": "LoP_pool B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 428912, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 428912, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1079,14 +1079,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "device control aggregate document": { "device control document": [ { @@ -1099,22 +1093,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", "sample document": { "sample identifier": "LoP_pool B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30412, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30412, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1122,14 +1122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "device control aggregate document": { "device control document": [ { @@ -1142,22 +1136,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", "sample document": { "sample identifier": "LoP_pool B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25536, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25536, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1165,14 +1165,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "device control aggregate document": { "device control document": [ { @@ -1185,22 +1179,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", "sample document": { "sample identifier": "LoP_pool B4", "location identifier": "B4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28388, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28388, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1208,14 +1208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "device control aggregate document": { "device control document": [ { @@ -1228,22 +1222,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", "sample document": { "sample identifier": "LoP_pool B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28224, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28224, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1251,14 +1251,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "device control aggregate document": { "device control document": [ { @@ -1271,22 +1265,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", "sample document": { "sample identifier": "LoP_pool B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28680, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28680, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1294,14 +1294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "device control aggregate document": { "device control document": [ { @@ -1314,22 +1308,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", "sample document": { "sample identifier": "LoP_pool B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28912, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28912, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1337,14 +1337,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "device control aggregate document": { "device control document": [ { @@ -1357,22 +1351,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", "sample document": { "sample identifier": "LoP_pool B8", "location identifier": "B8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29128, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29128, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1380,14 +1380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "device control aggregate document": { "device control document": [ { @@ -1400,22 +1394,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", "sample document": { "sample identifier": "LoP_pool B9", "location identifier": "B9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26852, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26852, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1423,14 +1423,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "device control aggregate document": { "device control document": [ { @@ -1443,22 +1437,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", "sample document": { "sample identifier": "LoP_pool B10", "location identifier": "B10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28040, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28040, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1466,14 +1466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "device control aggregate document": { "device control document": [ { @@ -1486,22 +1480,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", "sample document": { "sample identifier": "LoP_pool B11", "location identifier": "B11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27996, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27996, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1509,14 +1509,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "device control aggregate document": { "device control document": [ { @@ -1529,22 +1523,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", "sample document": { "sample identifier": "LoP_pool B12", "location identifier": "B12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28564, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28564, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1552,14 +1552,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "device control aggregate document": { "device control document": [ { @@ -1572,22 +1566,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", "sample document": { "sample identifier": "LoP_pool B13", "location identifier": "B13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27412, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27412, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1595,14 +1595,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "device control aggregate document": { "device control document": [ { @@ -1615,22 +1609,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", "sample document": { "sample identifier": "LoP_pool B14", "location identifier": "B14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30156, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30156, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1638,14 +1638,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "device control aggregate document": { "device control document": [ { @@ -1658,22 +1652,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", "sample document": { "sample identifier": "LoP_pool B15", "location identifier": "B15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26908, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26908, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1681,14 +1681,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "device control aggregate document": { "device control document": [ { @@ -1701,22 +1695,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", "sample document": { "sample identifier": "LoP_pool B16", "location identifier": "B16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28860, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28860, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1724,14 +1724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "device control aggregate document": { "device control document": [ { @@ -1744,22 +1738,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", "sample document": { "sample identifier": "LoP_pool B17", "location identifier": "B17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27264, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27264, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1767,14 +1767,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "device control aggregate document": { "device control document": [ { @@ -1787,22 +1781,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", "sample document": { "sample identifier": "LoP_pool B18", "location identifier": "B18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27592, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27592, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1810,14 +1810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "device control aggregate document": { "device control document": [ { @@ -1830,22 +1824,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", "sample document": { "sample identifier": "LoP_pool B19", "location identifier": "B19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27728, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27728, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1853,14 +1853,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "device control aggregate document": { "device control document": [ { @@ -1873,22 +1867,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", "sample document": { "sample identifier": "LoP_pool B20", "location identifier": "B20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28296, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28296, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1896,14 +1896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "device control aggregate document": { "device control document": [ { @@ -1916,22 +1910,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", "sample document": { "sample identifier": "LoP_pool B21", "location identifier": "B21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27772, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27772, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1939,14 +1939,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "device control aggregate document": { "device control document": [ { @@ -1959,22 +1953,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", "sample document": { "sample identifier": "LoP_pool B22", "location identifier": "B22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29212, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29212, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -1982,14 +1982,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "device control aggregate document": { "device control document": [ { @@ -2002,22 +1996,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", "sample document": { "sample identifier": "LoP_pool B23", "location identifier": "B23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27936, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27936, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2025,14 +2025,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "device control aggregate document": { "device control document": [ { @@ -2045,22 +2039,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", "sample document": { "sample identifier": "LoP_pool B24", "location identifier": "B24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 442244, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 442244, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2068,14 +2068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "device control aggregate document": { "device control document": [ { @@ -2088,22 +2082,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", "sample document": { "sample identifier": "LoP_pool C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 237744, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 237744, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2111,14 +2111,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "device control aggregate document": { "device control document": [ { @@ -2131,22 +2125,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", "sample document": { "sample identifier": "LoP_pool C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29704, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29704, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2154,14 +2154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "device control aggregate document": { "device control document": [ { @@ -2174,22 +2168,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", "sample document": { "sample identifier": "LoP_pool C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27556, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27556, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2197,14 +2197,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "device control aggregate document": { "device control document": [ { @@ -2217,22 +2211,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", "sample document": { "sample identifier": "LoP_pool C4", "location identifier": "C4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29540, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29540, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2240,14 +2240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "device control aggregate document": { "device control document": [ { @@ -2260,22 +2254,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", "sample document": { "sample identifier": "LoP_pool C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30036, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30036, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2283,14 +2283,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "device control aggregate document": { "device control document": [ { @@ -2303,22 +2297,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", "sample document": { "sample identifier": "LoP_pool C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28712, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28712, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2326,14 +2326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "device control aggregate document": { "device control document": [ { @@ -2346,22 +2340,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", "sample document": { "sample identifier": "LoP_pool C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28276, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28276, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2369,14 +2369,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "device control aggregate document": { "device control document": [ { @@ -2389,22 +2383,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", "sample document": { "sample identifier": "LoP_pool C8", "location identifier": "C8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29656, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29656, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2412,14 +2412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "device control aggregate document": { "device control document": [ { @@ -2432,22 +2426,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", "sample document": { "sample identifier": "LoP_pool C9", "location identifier": "C9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31664, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31664, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2455,14 +2455,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "device control aggregate document": { "device control document": [ { @@ -2475,22 +2469,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", "sample document": { "sample identifier": "LoP_pool C10", "location identifier": "C10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29096, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29096, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2498,14 +2498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "device control aggregate document": { "device control document": [ { @@ -2518,22 +2512,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", "sample document": { "sample identifier": "LoP_pool C11", "location identifier": "C11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30260, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30260, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2541,14 +2541,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "device control aggregate document": { "device control document": [ { @@ -2561,22 +2555,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", "sample document": { "sample identifier": "LoP_pool C12", "location identifier": "C12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30252, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30252, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2584,14 +2584,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "device control aggregate document": { "device control document": [ { @@ -2604,22 +2598,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", "sample document": { "sample identifier": "LoP_pool C13", "location identifier": "C13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30028, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30028, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2627,14 +2627,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "device control aggregate document": { "device control document": [ { @@ -2647,22 +2641,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", "sample document": { "sample identifier": "LoP_pool C14", "location identifier": "C14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29296, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29296, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2670,14 +2670,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "device control aggregate document": { "device control document": [ { @@ -2690,22 +2684,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", "sample document": { "sample identifier": "LoP_pool C15", "location identifier": "C15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28600, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28600, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2713,14 +2713,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "device control aggregate document": { "device control document": [ { @@ -2733,37 +2727,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", "sample document": { "sample identifier": "LoP_pool C16", "location identifier": "C16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28668, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28668, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "device control aggregate document": { "device control document": [ { @@ -2776,22 +2770,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", "sample document": { "sample identifier": "LoP_pool C17", "location identifier": "C17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29328, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29328, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2799,14 +2799,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "device control aggregate document": { "device control document": [ { @@ -2819,22 +2813,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", "sample document": { "sample identifier": "LoP_pool C18", "location identifier": "C18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30380, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30380, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2842,14 +2842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "device control aggregate document": { "device control document": [ { @@ -2862,22 +2856,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", "sample document": { "sample identifier": "LoP_pool C19", "location identifier": "C19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29908, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29908, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2885,14 +2885,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "device control aggregate document": { "device control document": [ { @@ -2905,22 +2899,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", "sample document": { "sample identifier": "LoP_pool C20", "location identifier": "C20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27620, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27620, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2928,14 +2928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "device control aggregate document": { "device control document": [ { @@ -2948,22 +2942,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", "sample document": { "sample identifier": "LoP_pool C21", "location identifier": "C21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31916, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31916, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -2971,14 +2971,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "device control aggregate document": { "device control document": [ { @@ -2991,22 +2985,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", "sample document": { "sample identifier": "LoP_pool C22", "location identifier": "C22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28036, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28036, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3014,14 +3014,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "device control aggregate document": { "device control document": [ { @@ -3034,22 +3028,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", "sample document": { "sample identifier": "LoP_pool C23", "location identifier": "C23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28300, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28300, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3057,14 +3057,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "device control aggregate document": { "device control document": [ { @@ -3077,22 +3071,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", "sample document": { "sample identifier": "LoP_pool C24", "location identifier": "C24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 232476, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 232476, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3100,14 +3100,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "device control aggregate document": { "device control document": [ { @@ -3120,22 +3114,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", "sample document": { "sample identifier": "LoP_pool D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 97864, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 97864, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3143,14 +3143,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "device control aggregate document": { "device control document": [ { @@ -3163,22 +3157,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", "sample document": { "sample identifier": "LoP_pool D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29616, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29616, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3186,14 +3186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "device control aggregate document": { "device control document": [ { @@ -3206,22 +3200,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", "sample document": { "sample identifier": "LoP_pool D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28172, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28172, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3229,14 +3229,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "device control aggregate document": { "device control document": [ { @@ -3249,22 +3243,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", "sample document": { "sample identifier": "LoP_pool D4", "location identifier": "D4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29772, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29772, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3272,14 +3272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "device control aggregate document": { "device control document": [ { @@ -3292,22 +3286,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", "sample document": { "sample identifier": "LoP_pool D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28672, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28672, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3315,14 +3315,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "device control aggregate document": { "device control document": [ { @@ -3335,22 +3329,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", "sample document": { "sample identifier": "LoP_pool D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30872, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30872, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3358,14 +3358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "device control aggregate document": { "device control document": [ { @@ -3378,22 +3372,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", "sample document": { "sample identifier": "LoP_pool D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30420, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30420, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3401,14 +3401,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "device control aggregate document": { "device control document": [ { @@ -3421,22 +3415,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", "sample document": { "sample identifier": "LoP_pool D8", "location identifier": "D8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29760, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29760, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3444,14 +3444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "device control aggregate document": { "device control document": [ { @@ -3464,22 +3458,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", "sample document": { "sample identifier": "LoP_pool D9", "location identifier": "D9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30940, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30940, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3487,14 +3487,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "device control aggregate document": { "device control document": [ { @@ -3507,22 +3501,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", "sample document": { "sample identifier": "LoP_pool D10", "location identifier": "D10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30864, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30864, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3530,14 +3530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "device control aggregate document": { "device control document": [ { @@ -3550,22 +3544,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", "sample document": { "sample identifier": "LoP_pool D11", "location identifier": "D11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30992, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30992, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3573,14 +3573,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "device control aggregate document": { "device control document": [ { @@ -3593,22 +3587,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", "sample document": { "sample identifier": "LoP_pool D12", "location identifier": "D12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29768, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29768, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3616,14 +3616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "device control aggregate document": { "device control document": [ { @@ -3636,22 +3630,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", "sample document": { "sample identifier": "LoP_pool D13", "location identifier": "D13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29412, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29412, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3659,14 +3659,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "device control aggregate document": { "device control document": [ { @@ -3679,22 +3673,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", "sample document": { "sample identifier": "LoP_pool D14", "location identifier": "D14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29804, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29804, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3702,14 +3702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "device control aggregate document": { "device control document": [ { @@ -3722,22 +3716,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", "sample document": { "sample identifier": "LoP_pool D15", "location identifier": "D15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31096, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31096, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3745,14 +3745,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "device control aggregate document": { "device control document": [ { @@ -3765,22 +3759,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", "sample document": { "sample identifier": "LoP_pool D16", "location identifier": "D16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30044, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30044, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3788,14 +3788,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "device control aggregate document": { "device control document": [ { @@ -3808,22 +3802,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", "sample document": { "sample identifier": "LoP_pool D17", "location identifier": "D17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29072, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29072, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3831,14 +3831,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "device control aggregate document": { "device control document": [ { @@ -3851,22 +3845,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", "sample document": { "sample identifier": "LoP_pool D18", "location identifier": "D18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29668, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29668, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3874,14 +3874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "device control aggregate document": { "device control document": [ { @@ -3894,22 +3888,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", "sample document": { "sample identifier": "LoP_pool D19", "location identifier": "D19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31256, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31256, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3917,14 +3917,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "device control aggregate document": { "device control document": [ { @@ -3937,22 +3931,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", "sample document": { "sample identifier": "LoP_pool D20", "location identifier": "D20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30512, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30512, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -3960,14 +3960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "device control aggregate document": { "device control document": [ { @@ -3980,22 +3974,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", "sample document": { "sample identifier": "LoP_pool D21", "location identifier": "D21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28872, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28872, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4003,14 +4003,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "device control aggregate document": { "device control document": [ { @@ -4023,22 +4017,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", "sample document": { "sample identifier": "LoP_pool D22", "location identifier": "D22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30224, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30224, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4046,14 +4046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "device control aggregate document": { "device control document": [ { @@ -4066,22 +4060,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", "sample document": { "sample identifier": "LoP_pool D23", "location identifier": "D23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 26964, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 26964, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4089,14 +4089,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "device control aggregate document": { "device control document": [ { @@ -4109,22 +4103,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", "sample document": { "sample identifier": "LoP_pool D24", "location identifier": "D24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 100992, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 100992, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4132,14 +4132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "device control aggregate document": { "device control document": [ { @@ -4152,22 +4146,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", "sample document": { "sample identifier": "LoP_pool E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 36408, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 36408, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4175,14 +4175,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "device control aggregate document": { "device control document": [ { @@ -4195,22 +4189,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", "sample document": { "sample identifier": "LoP_pool E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29492, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29492, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4218,14 +4218,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "device control aggregate document": { "device control document": [ { @@ -4238,22 +4232,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", "sample document": { "sample identifier": "LoP_pool E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28672, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28672, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4261,14 +4261,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "device control aggregate document": { "device control document": [ { @@ -4281,22 +4275,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", "sample document": { "sample identifier": "LoP_pool E4", "location identifier": "E4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29776, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29776, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4304,14 +4304,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "device control aggregate document": { "device control document": [ { @@ -4324,22 +4318,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", "sample document": { "sample identifier": "LoP_pool E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29844, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29844, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4347,14 +4347,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "device control aggregate document": { "device control document": [ { @@ -4367,22 +4361,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", "sample document": { "sample identifier": "LoP_pool E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28024, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28024, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4390,14 +4390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "device control aggregate document": { "device control document": [ { @@ -4410,22 +4404,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", "sample document": { "sample identifier": "LoP_pool E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28976, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28976, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4433,14 +4433,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "device control aggregate document": { "device control document": [ { @@ -4453,22 +4447,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", "sample document": { "sample identifier": "LoP_pool E8", "location identifier": "E8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28880, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28880, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4476,14 +4476,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "device control aggregate document": { "device control document": [ { @@ -4496,22 +4490,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", "sample document": { "sample identifier": "LoP_pool E9", "location identifier": "E9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29608, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29608, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4519,14 +4519,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "device control aggregate document": { "device control document": [ { @@ -4539,22 +4533,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", "sample document": { "sample identifier": "LoP_pool E10", "location identifier": "E10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29376, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29376, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4562,14 +4562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "device control aggregate document": { "device control document": [ { @@ -4582,22 +4576,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", "sample document": { "sample identifier": "LoP_pool E11", "location identifier": "E11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31416, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31416, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4605,14 +4605,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "device control aggregate document": { "device control document": [ { @@ -4625,22 +4619,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", "sample document": { "sample identifier": "LoP_pool E12", "location identifier": "E12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31792, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31792, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4648,14 +4648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "device control aggregate document": { "device control document": [ { @@ -4668,22 +4662,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", "sample document": { "sample identifier": "LoP_pool E13", "location identifier": "E13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31088, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31088, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4691,14 +4691,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "device control aggregate document": { "device control document": [ { @@ -4711,22 +4705,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", "sample document": { "sample identifier": "LoP_pool E14", "location identifier": "E14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31668, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31668, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4734,14 +4734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "device control aggregate document": { "device control document": [ { @@ -4754,22 +4748,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", "sample document": { "sample identifier": "LoP_pool E15", "location identifier": "E15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30864, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30864, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4777,14 +4777,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "device control aggregate document": { "device control document": [ { @@ -4797,22 +4791,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", "sample document": { "sample identifier": "LoP_pool E16", "location identifier": "E16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27808, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27808, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4820,14 +4820,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "device control aggregate document": { "device control document": [ { @@ -4840,22 +4834,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", "sample document": { "sample identifier": "LoP_pool E17", "location identifier": "E17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31400, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31400, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4863,14 +4863,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "device control aggregate document": { "device control document": [ { @@ -4883,22 +4877,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", "sample document": { "sample identifier": "LoP_pool E18", "location identifier": "E18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28620, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28620, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4906,14 +4906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "device control aggregate document": { "device control document": [ { @@ -4926,37 +4920,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", "sample document": { "sample identifier": "LoP_pool E19", "location identifier": "E19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27288, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27288, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "device control aggregate document": { "device control document": [ { @@ -4969,22 +4963,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", "sample document": { "sample identifier": "LoP_pool E20", "location identifier": "E20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29012, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29012, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -4992,14 +4992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "device control aggregate document": { "device control document": [ { @@ -5012,22 +5006,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", "sample document": { "sample identifier": "LoP_pool E21", "location identifier": "E21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27312, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27312, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5035,14 +5035,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "device control aggregate document": { "device control document": [ { @@ -5055,22 +5049,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", "sample document": { "sample identifier": "LoP_pool E22", "location identifier": "E22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28548, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28548, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5078,14 +5078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "device control aggregate document": { "device control document": [ { @@ -5098,22 +5092,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", "sample document": { "sample identifier": "LoP_pool E23", "location identifier": "E23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27676, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27676, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5121,14 +5121,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "device control aggregate document": { "device control document": [ { @@ -5141,22 +5135,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", "sample document": { "sample identifier": "LoP_pool E24", "location identifier": "E24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 38020, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 38020, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5164,14 +5164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "device control aggregate document": { "device control document": [ { @@ -5184,22 +5178,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", "sample document": { "sample identifier": "LoP_pool F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 15992, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 15992, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5207,14 +5207,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "device control aggregate document": { "device control document": [ { @@ -5227,22 +5221,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", "sample document": { "sample identifier": "LoP_pool F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31352, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31352, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5250,14 +5250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "device control aggregate document": { "device control document": [ { @@ -5270,22 +5264,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", "sample document": { "sample identifier": "LoP_pool F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31384, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31384, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5293,14 +5293,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "device control aggregate document": { "device control document": [ { @@ -5313,22 +5307,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", "sample document": { "sample identifier": "LoP_pool F4", "location identifier": "F4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29508, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29508, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5336,14 +5336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "device control aggregate document": { "device control document": [ { @@ -5356,22 +5350,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", "sample document": { "sample identifier": "LoP_pool F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31524, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31524, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5379,14 +5379,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "device control aggregate document": { "device control document": [ { @@ -5399,22 +5393,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", "sample document": { "sample identifier": "LoP_pool F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30128, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30128, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5422,14 +5422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "device control aggregate document": { "device control document": [ { @@ -5442,22 +5436,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", "sample document": { "sample identifier": "LoP_pool F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32948, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32948, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5465,14 +5465,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "device control aggregate document": { "device control document": [ { @@ -5485,22 +5479,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", "sample document": { "sample identifier": "LoP_pool F8", "location identifier": "F8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31144, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31144, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5508,14 +5508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "device control aggregate document": { "device control document": [ { @@ -5528,22 +5522,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", "sample document": { "sample identifier": "LoP_pool F9", "location identifier": "F9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30136, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30136, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5551,14 +5551,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "device control aggregate document": { "device control document": [ { @@ -5571,22 +5565,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", "sample document": { "sample identifier": "LoP_pool F10", "location identifier": "F10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30908, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30908, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5594,14 +5594,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "device control aggregate document": { "device control document": [ { @@ -5614,22 +5608,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", "sample document": { "sample identifier": "LoP_pool F11", "location identifier": "F11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28484, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28484, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5637,14 +5637,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "device control aggregate document": { "device control document": [ { @@ -5657,22 +5651,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", "sample document": { "sample identifier": "LoP_pool F12", "location identifier": "F12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30288, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30288, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5680,14 +5680,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "device control aggregate document": { "device control document": [ { @@ -5700,22 +5694,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", "sample document": { "sample identifier": "LoP_pool F13", "location identifier": "F13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29304, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29304, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5723,14 +5723,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "device control aggregate document": { "device control document": [ { @@ -5743,22 +5737,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", "sample document": { "sample identifier": "LoP_pool F14", "location identifier": "F14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30700, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30700, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5766,14 +5766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "device control aggregate document": { "device control document": [ { @@ -5786,22 +5780,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", "sample document": { "sample identifier": "LoP_pool F15", "location identifier": "F15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29240, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29240, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5809,14 +5809,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "device control aggregate document": { "device control document": [ { @@ -5829,22 +5823,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", "sample document": { "sample identifier": "LoP_pool F16", "location identifier": "F16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28512, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28512, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5852,14 +5852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "device control aggregate document": { "device control document": [ { @@ -5872,22 +5866,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", "sample document": { "sample identifier": "LoP_pool F17", "location identifier": "F17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30108, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30108, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5895,14 +5895,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "device control aggregate document": { "device control document": [ { @@ -5915,22 +5909,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", "sample document": { "sample identifier": "LoP_pool F18", "location identifier": "F18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28760, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28760, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5938,14 +5938,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "device control aggregate document": { "device control document": [ { @@ -5958,22 +5952,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", "sample document": { "sample identifier": "LoP_pool F19", "location identifier": "F19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28356, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28356, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -5981,14 +5981,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "device control aggregate document": { "device control document": [ { @@ -6001,22 +5995,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", "sample document": { "sample identifier": "LoP_pool F20", "location identifier": "F20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27880, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27880, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6024,14 +6024,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "device control aggregate document": { "device control document": [ { @@ -6044,22 +6038,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", "sample document": { "sample identifier": "LoP_pool F21", "location identifier": "F21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28336, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28336, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6067,14 +6067,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "device control aggregate document": { "device control document": [ { @@ -6087,22 +6081,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", "sample document": { "sample identifier": "LoP_pool F22", "location identifier": "F22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30052, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30052, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6110,14 +6110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "device control aggregate document": { "device control document": [ { @@ -6130,22 +6124,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", "sample document": { "sample identifier": "LoP_pool F23", "location identifier": "F23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27896, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27896, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6153,14 +6153,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "device control aggregate document": { "device control document": [ { @@ -6173,22 +6167,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", "sample document": { "sample identifier": "LoP_pool F24", "location identifier": "F24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 15440, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 15440, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6196,14 +6196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "device control aggregate document": { "device control document": [ { @@ -6216,22 +6210,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", "sample document": { "sample identifier": "LoP_pool G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 7016, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 7016, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6239,14 +6239,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "device control aggregate document": { "device control document": [ { @@ -6259,22 +6253,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", "sample document": { "sample identifier": "LoP_pool G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29056, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29056, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6282,14 +6282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "device control aggregate document": { "device control document": [ { @@ -6302,22 +6296,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", "sample document": { "sample identifier": "LoP_pool G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31840, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31840, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6325,14 +6325,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "device control aggregate document": { "device control document": [ { @@ -6345,22 +6339,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", "sample document": { "sample identifier": "LoP_pool G4", "location identifier": "G4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35172, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35172, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6368,14 +6368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "device control aggregate document": { "device control document": [ { @@ -6388,22 +6382,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", "sample document": { "sample identifier": "LoP_pool G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32160, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32160, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6411,14 +6411,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "device control aggregate document": { "device control document": [ { @@ -6431,22 +6425,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", "sample document": { "sample identifier": "LoP_pool G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32108, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32108, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6454,14 +6454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "device control aggregate document": { "device control document": [ { @@ -6474,22 +6468,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", "sample document": { "sample identifier": "LoP_pool G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31496, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31496, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6497,14 +6497,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "device control aggregate document": { "device control document": [ { @@ -6517,22 +6511,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", "sample document": { "sample identifier": "LoP_pool G8", "location identifier": "G8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30676, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30676, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6540,14 +6540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "device control aggregate document": { "device control document": [ { @@ -6560,22 +6554,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", "sample document": { "sample identifier": "LoP_pool G9", "location identifier": "G9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29128, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29128, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6583,14 +6583,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "device control aggregate document": { "device control document": [ { @@ -6603,22 +6597,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", "sample document": { "sample identifier": "LoP_pool G10", "location identifier": "G10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30628, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30628, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6626,14 +6626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "device control aggregate document": { "device control document": [ { @@ -6646,22 +6640,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", "sample document": { "sample identifier": "LoP_pool G11", "location identifier": "G11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30268, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30268, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6669,14 +6669,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "device control aggregate document": { "device control document": [ { @@ -6689,22 +6683,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", "sample document": { "sample identifier": "LoP_pool G12", "location identifier": "G12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31128, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31128, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6712,14 +6712,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "device control aggregate document": { "device control document": [ { @@ -6732,22 +6726,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", "sample document": { "sample identifier": "LoP_pool G13", "location identifier": "G13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31340, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31340, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6755,14 +6755,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "device control aggregate document": { "device control document": [ { @@ -6775,22 +6769,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", "sample document": { "sample identifier": "LoP_pool G14", "location identifier": "G14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31892, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31892, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6798,14 +6798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "device control aggregate document": { "device control document": [ { @@ -6818,22 +6812,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", "sample document": { "sample identifier": "LoP_pool G15", "location identifier": "G15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29064, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29064, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6841,14 +6841,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "device control aggregate document": { "device control document": [ { @@ -6861,22 +6855,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", "sample document": { "sample identifier": "LoP_pool G16", "location identifier": "G16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29940, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29940, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6884,14 +6884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "device control aggregate document": { "device control document": [ { @@ -6904,22 +6898,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", "sample document": { "sample identifier": "LoP_pool G17", "location identifier": "G17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30572, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30572, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6927,14 +6927,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "device control aggregate document": { "device control document": [ { @@ -6947,22 +6941,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", "sample document": { "sample identifier": "LoP_pool G18", "location identifier": "G18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30492, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30492, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -6970,14 +6970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "device control aggregate document": { "device control document": [ { @@ -6990,22 +6984,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", "sample document": { "sample identifier": "LoP_pool G19", "location identifier": "G19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27056, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27056, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7013,14 +7013,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "device control aggregate document": { "device control document": [ { @@ -7033,22 +7027,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", "sample document": { "sample identifier": "LoP_pool G20", "location identifier": "G20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28712, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28712, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7056,14 +7056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "device control aggregate document": { "device control document": [ { @@ -7076,22 +7070,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", "sample document": { "sample identifier": "LoP_pool G21", "location identifier": "G21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29596, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29596, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7099,14 +7099,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "device control aggregate document": { "device control document": [ { @@ -7119,37 +7113,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", "sample document": { "sample identifier": "LoP_pool G22", "location identifier": "G22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30540, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30540, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "device control aggregate document": { "device control document": [ { @@ -7162,22 +7156,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", "sample document": { "sample identifier": "LoP_pool G23", "location identifier": "G23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30340, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30340, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7185,14 +7185,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "device control aggregate document": { "device control document": [ { @@ -7205,22 +7199,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", "sample document": { "sample identifier": "LoP_pool G24", "location identifier": "G24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 7164, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 7164, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7228,14 +7228,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "device control aggregate document": { "device control document": [ { @@ -7248,22 +7242,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", "sample document": { "sample identifier": "LoP_pool H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 4368, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4368, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7271,14 +7271,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "device control aggregate document": { "device control document": [ { @@ -7291,22 +7285,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", "sample document": { "sample identifier": "LoP_pool H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31500, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31500, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7314,14 +7314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "device control aggregate document": { "device control document": [ { @@ -7334,22 +7328,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", "sample document": { "sample identifier": "LoP_pool H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30348, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30348, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7357,14 +7357,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "device control aggregate document": { "device control document": [ { @@ -7377,22 +7371,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", "sample document": { "sample identifier": "LoP_pool H4", "location identifier": "H4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35664, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35664, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7400,14 +7400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "device control aggregate document": { "device control document": [ { @@ -7420,22 +7414,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", "sample document": { "sample identifier": "LoP_pool H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29604, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29604, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7443,14 +7443,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "device control aggregate document": { "device control document": [ { @@ -7463,22 +7457,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", "sample document": { "sample identifier": "LoP_pool H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28716, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28716, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7486,14 +7486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "device control aggregate document": { "device control document": [ { @@ -7506,22 +7500,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", "sample document": { "sample identifier": "LoP_pool H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30248, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30248, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7529,14 +7529,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "device control aggregate document": { "device control document": [ { @@ -7549,22 +7543,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", "sample document": { "sample identifier": "LoP_pool H8", "location identifier": "H8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32280, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32280, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7572,14 +7572,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "device control aggregate document": { "device control document": [ { @@ -7592,22 +7586,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", "sample document": { "sample identifier": "LoP_pool H9", "location identifier": "H9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32496, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32496, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7615,14 +7615,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "device control aggregate document": { "device control document": [ { @@ -7635,22 +7629,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", "sample document": { "sample identifier": "LoP_pool H10", "location identifier": "H10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32980, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32980, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7658,14 +7658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "device control aggregate document": { "device control document": [ { @@ -7678,22 +7672,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", "sample document": { "sample identifier": "LoP_pool H11", "location identifier": "H11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30008, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30008, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7701,14 +7701,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "device control aggregate document": { "device control document": [ { @@ -7721,22 +7715,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", "sample document": { "sample identifier": "LoP_pool H12", "location identifier": "H12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32144, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32144, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7744,14 +7744,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "device control aggregate document": { "device control document": [ { @@ -7764,22 +7758,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", "sample document": { "sample identifier": "LoP_pool H13", "location identifier": "H13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27316, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27316, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7787,14 +7787,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "device control aggregate document": { "device control document": [ { @@ -7807,22 +7801,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", "sample document": { "sample identifier": "LoP_pool H14", "location identifier": "H14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28596, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28596, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7830,14 +7830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "device control aggregate document": { "device control document": [ { @@ -7850,22 +7844,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", "sample document": { "sample identifier": "LoP_pool H15", "location identifier": "H15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29464, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29464, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7873,14 +7873,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "device control aggregate document": { "device control document": [ { @@ -7893,22 +7887,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", "sample document": { "sample identifier": "LoP_pool H16", "location identifier": "H16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 24620, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 24620, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7916,14 +7916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "device control aggregate document": { "device control document": [ { @@ -7936,22 +7930,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", "sample document": { "sample identifier": "LoP_pool H17", "location identifier": "H17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31952, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31952, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -7959,14 +7959,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "device control aggregate document": { "device control document": [ { @@ -7979,22 +7973,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", "sample document": { "sample identifier": "LoP_pool H18", "location identifier": "H18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29580, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29580, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8002,14 +8002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "device control aggregate document": { "device control document": [ { @@ -8022,22 +8016,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", "sample document": { "sample identifier": "LoP_pool H19", "location identifier": "H19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28808, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28808, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8045,14 +8045,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "device control aggregate document": { "device control document": [ { @@ -8065,22 +8059,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", "sample document": { "sample identifier": "LoP_pool H20", "location identifier": "H20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30872, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30872, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8088,14 +8088,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "device control aggregate document": { "device control document": [ { @@ -8108,22 +8102,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", "sample document": { "sample identifier": "LoP_pool H21", "location identifier": "H21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29040, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29040, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8131,14 +8131,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "device control aggregate document": { "device control document": [ { @@ -8151,22 +8145,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", "sample document": { "sample identifier": "LoP_pool H22", "location identifier": "H22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31704, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31704, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8174,14 +8174,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "device control aggregate document": { "device control document": [ { @@ -8194,22 +8188,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", "sample document": { "sample identifier": "LoP_pool H23", "location identifier": "H23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31304, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31304, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8217,14 +8217,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "device control aggregate document": { "device control document": [ { @@ -8237,22 +8231,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", "sample document": { "sample identifier": "LoP_pool H24", "location identifier": "H24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 4240, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 4240, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8260,14 +8260,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "device control aggregate document": { "device control document": [ { @@ -8280,22 +8274,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", "sample document": { "sample identifier": "LoP_pool I1", "location identifier": "I1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 3092, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 3092, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8303,14 +8303,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "device control aggregate document": { "device control document": [ { @@ -8323,22 +8317,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", "sample document": { "sample identifier": "LoP_pool I2", "location identifier": "I2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29852, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29852, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8346,14 +8346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "device control aggregate document": { "device control document": [ { @@ -8366,22 +8360,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", "sample document": { "sample identifier": "LoP_pool I3", "location identifier": "I3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31676, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31676, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8389,14 +8389,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "device control aggregate document": { "device control document": [ { @@ -8409,22 +8403,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", "sample document": { "sample identifier": "LoP_pool I4", "location identifier": "I4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31460, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31460, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8432,14 +8432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "device control aggregate document": { "device control document": [ { @@ -8452,22 +8446,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", "sample document": { "sample identifier": "LoP_pool I5", "location identifier": "I5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31220, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31220, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8475,14 +8475,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "device control aggregate document": { "device control document": [ { @@ -8495,22 +8489,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", "sample document": { "sample identifier": "LoP_pool I6", "location identifier": "I6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29788, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29788, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8518,14 +8518,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "device control aggregate document": { "device control document": [ { @@ -8538,22 +8532,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", "sample document": { "sample identifier": "LoP_pool I7", "location identifier": "I7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30732, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30732, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8561,14 +8561,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "device control aggregate document": { "device control document": [ { @@ -8581,22 +8575,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", "sample document": { "sample identifier": "LoP_pool I8", "location identifier": "I8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32552, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32552, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8604,14 +8604,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "device control aggregate document": { "device control document": [ { @@ -8624,22 +8618,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", "sample document": { "sample identifier": "LoP_pool I9", "location identifier": "I9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32472, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32472, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8647,14 +8647,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "device control aggregate document": { "device control document": [ { @@ -8667,22 +8661,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", "sample document": { "sample identifier": "LoP_pool I10", "location identifier": "I10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29600, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29600, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8690,14 +8690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "device control aggregate document": { "device control document": [ { @@ -8710,22 +8704,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", "sample document": { "sample identifier": "LoP_pool I11", "location identifier": "I11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27768, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27768, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8733,14 +8733,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "device control aggregate document": { "device control document": [ { @@ -8753,22 +8747,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", "sample document": { "sample identifier": "LoP_pool I12", "location identifier": "I12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 25788, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 25788, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8776,14 +8776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "device control aggregate document": { "device control document": [ { @@ -8796,22 +8790,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", "sample document": { "sample identifier": "LoP_pool I13", "location identifier": "I13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31896, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31896, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8819,14 +8819,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "device control aggregate document": { "device control document": [ { @@ -8839,22 +8833,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", "sample document": { "sample identifier": "LoP_pool I14", "location identifier": "I14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31736, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31736, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8862,14 +8862,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "device control aggregate document": { "device control document": [ { @@ -8882,22 +8876,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", "sample document": { "sample identifier": "LoP_pool I15", "location identifier": "I15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29632, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29632, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8905,14 +8905,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "device control aggregate document": { "device control document": [ { @@ -8925,22 +8919,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", "sample document": { "sample identifier": "LoP_pool I16", "location identifier": "I16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32292, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32292, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8948,14 +8948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "device control aggregate document": { "device control document": [ { @@ -8968,22 +8962,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", "sample document": { "sample identifier": "LoP_pool I17", "location identifier": "I17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29752, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29752, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -8991,14 +8991,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "device control aggregate document": { "device control document": [ { @@ -9011,22 +9005,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", "sample document": { "sample identifier": "LoP_pool I18", "location identifier": "I18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31412, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31412, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9034,14 +9034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "device control aggregate document": { "device control document": [ { @@ -9054,22 +9048,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", "sample document": { "sample identifier": "LoP_pool I19", "location identifier": "I19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29996, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29996, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9077,14 +9077,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "device control aggregate document": { "device control document": [ { @@ -9097,22 +9091,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", "sample document": { "sample identifier": "LoP_pool I20", "location identifier": "I20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30664, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30664, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9120,14 +9120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "device control aggregate document": { "device control document": [ { @@ -9140,22 +9134,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", "sample document": { "sample identifier": "LoP_pool I21", "location identifier": "I21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29972, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29972, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9163,14 +9163,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "device control aggregate document": { "device control document": [ { @@ -9183,22 +9177,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", "sample document": { "sample identifier": "LoP_pool I22", "location identifier": "I22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29596, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29596, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9206,14 +9206,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "device control aggregate document": { "device control document": [ { @@ -9226,22 +9220,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", "sample document": { "sample identifier": "LoP_pool I23", "location identifier": "I23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30292, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30292, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9249,14 +9249,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "device control aggregate document": { "device control document": [ { @@ -9269,22 +9263,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", "sample document": { "sample identifier": "LoP_pool I24", "location identifier": "I24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2940, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2940, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9292,14 +9292,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "device control aggregate document": { "device control document": [ { @@ -9312,37 +9306,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", "sample document": { "sample identifier": "LoP_pool J1", "location identifier": "J1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2804, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2804, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "device control aggregate document": { "device control document": [ { @@ -9355,22 +9349,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", "sample document": { "sample identifier": "LoP_pool J2", "location identifier": "J2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32428, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32428, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9378,14 +9378,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "device control aggregate document": { "device control document": [ { @@ -9398,22 +9392,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", "sample document": { "sample identifier": "LoP_pool J3", "location identifier": "J3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32308, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32308, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9421,14 +9421,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "device control aggregate document": { "device control document": [ { @@ -9441,22 +9435,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", "sample document": { "sample identifier": "LoP_pool J4", "location identifier": "J4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31204, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31204, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9464,14 +9464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "device control aggregate document": { "device control document": [ { @@ -9484,22 +9478,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", "sample document": { "sample identifier": "LoP_pool J5", "location identifier": "J5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31232, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31232, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9507,14 +9507,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "device control aggregate document": { "device control document": [ { @@ -9527,22 +9521,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", "sample document": { "sample identifier": "LoP_pool J6", "location identifier": "J6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30396, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30396, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9550,14 +9550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "device control aggregate document": { "device control document": [ { @@ -9570,22 +9564,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", "sample document": { "sample identifier": "LoP_pool J7", "location identifier": "J7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31364, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31364, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9593,14 +9593,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "device control aggregate document": { "device control document": [ { @@ -9613,22 +9607,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", "sample document": { "sample identifier": "LoP_pool J8", "location identifier": "J8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29044, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29044, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9636,14 +9636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "device control aggregate document": { "device control document": [ { @@ -9656,22 +9650,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", "sample document": { "sample identifier": "LoP_pool J9", "location identifier": "J9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31716, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31716, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9679,14 +9679,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "device control aggregate document": { "device control document": [ { @@ -9699,22 +9693,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", "sample document": { "sample identifier": "LoP_pool J10", "location identifier": "J10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31616, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31616, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9722,14 +9722,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "device control aggregate document": { "device control document": [ { @@ -9742,22 +9736,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", "sample document": { "sample identifier": "LoP_pool J11", "location identifier": "J11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31452, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31452, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9765,14 +9765,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "device control aggregate document": { "device control document": [ { @@ -9785,22 +9779,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", "sample document": { "sample identifier": "LoP_pool J12", "location identifier": "J12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32824, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32824, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9808,14 +9808,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "device control aggregate document": { "device control document": [ { @@ -9828,22 +9822,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", "sample document": { "sample identifier": "LoP_pool J13", "location identifier": "J13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31396, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31396, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9851,14 +9851,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "device control aggregate document": { "device control document": [ { @@ -9871,22 +9865,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", "sample document": { "sample identifier": "LoP_pool J14", "location identifier": "J14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30424, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30424, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9894,14 +9894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "device control aggregate document": { "device control document": [ { @@ -9914,22 +9908,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", "sample document": { "sample identifier": "LoP_pool J15", "location identifier": "J15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32984, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32984, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9937,14 +9937,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "device control aggregate document": { "device control document": [ { @@ -9957,22 +9951,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", "sample document": { "sample identifier": "LoP_pool J16", "location identifier": "J16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31660, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31660, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -9980,14 +9980,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "device control aggregate document": { "device control document": [ { @@ -10000,22 +9994,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", "sample document": { "sample identifier": "LoP_pool J17", "location identifier": "J17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32688, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32688, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10023,14 +10023,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "device control aggregate document": { "device control document": [ { @@ -10043,22 +10037,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", "sample document": { "sample identifier": "LoP_pool J18", "location identifier": "J18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33516, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33516, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10066,14 +10066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "device control aggregate document": { "device control document": [ { @@ -10086,22 +10080,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", "sample document": { "sample identifier": "LoP_pool J19", "location identifier": "J19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30004, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30004, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10109,14 +10109,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "device control aggregate document": { "device control document": [ { @@ -10129,22 +10123,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", "sample document": { "sample identifier": "LoP_pool J20", "location identifier": "J20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32056, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32056, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10152,14 +10152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "device control aggregate document": { "device control document": [ { @@ -10172,22 +10166,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", "sample document": { "sample identifier": "LoP_pool J21", "location identifier": "J21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31720, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31720, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10195,14 +10195,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "device control aggregate document": { "device control document": [ { @@ -10215,22 +10209,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", "sample document": { "sample identifier": "LoP_pool J22", "location identifier": "J22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31744, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31744, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10238,14 +10238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "device control aggregate document": { "device control document": [ { @@ -10258,22 +10252,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", "sample document": { "sample identifier": "LoP_pool J23", "location identifier": "J23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29184, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29184, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10281,14 +10281,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "device control aggregate document": { "device control document": [ { @@ -10301,22 +10295,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", "sample document": { "sample identifier": "LoP_pool J24", "location identifier": "J24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2884, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2884, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10324,14 +10324,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "device control aggregate document": { "device control document": [ { @@ -10344,22 +10338,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", "sample document": { "sample identifier": "LoP_pool K1", "location identifier": "K1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2808, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2808, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10367,14 +10367,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "device control aggregate document": { "device control document": [ { @@ -10387,22 +10381,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", "sample document": { "sample identifier": "LoP_pool K2", "location identifier": "K2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27288, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27288, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10410,14 +10410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "device control aggregate document": { "device control document": [ { @@ -10430,22 +10424,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", "sample document": { "sample identifier": "LoP_pool K3", "location identifier": "K3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31016, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31016, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10453,14 +10453,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "device control aggregate document": { "device control document": [ { @@ -10473,22 +10467,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", "sample document": { "sample identifier": "LoP_pool K4", "location identifier": "K4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31368, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31368, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10496,14 +10496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "device control aggregate document": { "device control document": [ { @@ -10516,22 +10510,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", "sample document": { "sample identifier": "LoP_pool K5", "location identifier": "K5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31828, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31828, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10539,14 +10539,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "device control aggregate document": { "device control document": [ { @@ -10559,22 +10553,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", "sample document": { "sample identifier": "LoP_pool K6", "location identifier": "K6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30320, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30320, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10582,14 +10582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "device control aggregate document": { "device control document": [ { @@ -10602,22 +10596,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", "sample document": { "sample identifier": "LoP_pool K7", "location identifier": "K7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31596, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31596, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10625,14 +10625,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "device control aggregate document": { "device control document": [ { @@ -10645,22 +10639,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", "sample document": { "sample identifier": "LoP_pool K8", "location identifier": "K8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31012, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31012, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10668,14 +10668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "device control aggregate document": { "device control document": [ { @@ -10688,22 +10682,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", "sample document": { "sample identifier": "LoP_pool K9", "location identifier": "K9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35044, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35044, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10711,14 +10711,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "device control aggregate document": { "device control document": [ { @@ -10731,22 +10725,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", "sample document": { "sample identifier": "LoP_pool K10", "location identifier": "K10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32948, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32948, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10754,14 +10754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "device control aggregate document": { "device control document": [ { @@ -10774,22 +10768,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", "sample document": { "sample identifier": "LoP_pool K11", "location identifier": "K11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31692, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31692, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10797,14 +10797,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "device control aggregate document": { "device control document": [ { @@ -10817,22 +10811,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", "sample document": { "sample identifier": "LoP_pool K12", "location identifier": "K12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30488, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30488, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10840,14 +10840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "device control aggregate document": { "device control document": [ { @@ -10860,22 +10854,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", "sample document": { "sample identifier": "LoP_pool K13", "location identifier": "K13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 34116, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 34116, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10883,14 +10883,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "device control aggregate document": { "device control document": [ { @@ -10903,22 +10897,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", "sample document": { "sample identifier": "LoP_pool K14", "location identifier": "K14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32176, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32176, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10926,14 +10926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "device control aggregate document": { "device control document": [ { @@ -10946,22 +10940,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", "sample document": { "sample identifier": "LoP_pool K15", "location identifier": "K15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32824, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32824, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -10969,14 +10969,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "device control aggregate document": { "device control document": [ { @@ -10989,22 +10983,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", "sample document": { "sample identifier": "LoP_pool K16", "location identifier": "K16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30696, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30696, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11012,14 +11012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "device control aggregate document": { "device control document": [ { @@ -11032,22 +11026,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", "sample document": { "sample identifier": "LoP_pool K17", "location identifier": "K17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31880, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31880, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11055,14 +11055,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "device control aggregate document": { "device control document": [ { @@ -11075,22 +11069,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", "sample document": { "sample identifier": "LoP_pool K18", "location identifier": "K18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33096, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33096, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11098,14 +11098,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "device control aggregate document": { "device control document": [ { @@ -11118,22 +11112,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", "sample document": { "sample identifier": "LoP_pool K19", "location identifier": "K19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27436, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27436, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11141,14 +11141,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "device control aggregate document": { "device control document": [ { @@ -11161,22 +11155,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", "sample document": { "sample identifier": "LoP_pool K20", "location identifier": "K20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29680, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29680, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11184,14 +11184,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "device control aggregate document": { "device control document": [ { @@ -11204,22 +11198,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", "sample document": { "sample identifier": "LoP_pool K21", "location identifier": "K21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 34788, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 34788, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11227,14 +11227,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "device control aggregate document": { "device control document": [ { @@ -11247,22 +11241,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", "sample document": { "sample identifier": "LoP_pool K22", "location identifier": "K22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30928, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30928, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11270,14 +11270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "device control aggregate document": { "device control document": [ { @@ -11290,22 +11284,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", "sample document": { "sample identifier": "LoP_pool K23", "location identifier": "K23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30364, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30364, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11313,14 +11313,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "device control aggregate document": { "device control document": [ { @@ -11333,22 +11327,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", "sample document": { "sample identifier": "LoP_pool K24", "location identifier": "K24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2780, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2780, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11356,14 +11356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "device control aggregate document": { "device control document": [ { @@ -11376,22 +11370,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", "sample document": { "sample identifier": "LoP_pool L1", "location identifier": "L1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2608, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2608, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11399,14 +11399,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "device control aggregate document": { "device control document": [ { @@ -11419,22 +11413,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", "sample document": { "sample identifier": "LoP_pool L2", "location identifier": "L2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31380, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31380, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11442,14 +11442,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "device control aggregate document": { "device control document": [ { @@ -11462,22 +11456,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", "sample document": { "sample identifier": "LoP_pool L3", "location identifier": "L3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30656, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30656, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11485,14 +11485,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "device control aggregate document": { "device control document": [ { @@ -11505,37 +11499,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", "sample document": { "sample identifier": "LoP_pool L4", "location identifier": "L4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32144, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32144, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "device control aggregate document": { "device control document": [ { @@ -11548,22 +11542,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", "sample document": { "sample identifier": "LoP_pool L5", "location identifier": "L5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33308, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33308, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11571,14 +11571,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "device control aggregate document": { "device control document": [ { @@ -11591,22 +11585,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", "sample document": { "sample identifier": "LoP_pool L6", "location identifier": "L6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30044, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30044, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11614,14 +11614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "device control aggregate document": { "device control document": [ { @@ -11634,22 +11628,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", "sample document": { "sample identifier": "LoP_pool L7", "location identifier": "L7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31088, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31088, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11657,14 +11657,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "device control aggregate document": { "device control document": [ { @@ -11677,22 +11671,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", "sample document": { "sample identifier": "LoP_pool L8", "location identifier": "L8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30840, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30840, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11700,14 +11700,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "device control aggregate document": { "device control document": [ { @@ -11720,22 +11714,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", "sample document": { "sample identifier": "LoP_pool L9", "location identifier": "L9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32332, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32332, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11743,14 +11743,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "device control aggregate document": { "device control document": [ { @@ -11763,22 +11757,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", "sample document": { "sample identifier": "LoP_pool L10", "location identifier": "L10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32088, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32088, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11786,14 +11786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "device control aggregate document": { "device control document": [ { @@ -11806,22 +11800,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", "sample document": { "sample identifier": "LoP_pool L11", "location identifier": "L11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32132, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32132, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11829,14 +11829,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "device control aggregate document": { "device control document": [ { @@ -11849,22 +11843,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", "sample document": { "sample identifier": "LoP_pool L12", "location identifier": "L12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32948, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32948, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11872,14 +11872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "device control aggregate document": { "device control document": [ { @@ -11892,22 +11886,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", "sample document": { "sample identifier": "LoP_pool L13", "location identifier": "L13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35416, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35416, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11915,14 +11915,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "device control aggregate document": { "device control document": [ { @@ -11935,22 +11929,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", "sample document": { "sample identifier": "LoP_pool L14", "location identifier": "L14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 37084, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 37084, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -11958,14 +11958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "device control aggregate document": { "device control document": [ { @@ -11978,22 +11972,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", "sample document": { "sample identifier": "LoP_pool L15", "location identifier": "L15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31048, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31048, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12001,14 +12001,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "device control aggregate document": { "device control document": [ { @@ -12021,22 +12015,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", "sample document": { "sample identifier": "LoP_pool L16", "location identifier": "L16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35832, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35832, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12044,14 +12044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "device control aggregate document": { "device control document": [ { @@ -12064,22 +12058,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", "sample document": { "sample identifier": "LoP_pool L17", "location identifier": "L17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35624, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35624, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12087,14 +12087,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "device control aggregate document": { "device control document": [ { @@ -12107,22 +12101,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", "sample document": { "sample identifier": "LoP_pool L18", "location identifier": "L18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31432, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31432, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12130,14 +12130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "device control aggregate document": { "device control document": [ { @@ -12150,22 +12144,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", "sample document": { "sample identifier": "LoP_pool L19", "location identifier": "L19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29284, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29284, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12173,14 +12173,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "device control aggregate document": { "device control document": [ { @@ -12193,22 +12187,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", "sample document": { "sample identifier": "LoP_pool L20", "location identifier": "L20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32272, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32272, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12216,14 +12216,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "device control aggregate document": { "device control document": [ { @@ -12236,22 +12230,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", "sample document": { "sample identifier": "LoP_pool L21", "location identifier": "L21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31040, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31040, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12259,14 +12259,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "device control aggregate document": { "device control document": [ { @@ -12279,22 +12273,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", "sample document": { "sample identifier": "LoP_pool L22", "location identifier": "L22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31504, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31504, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12302,14 +12302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "device control aggregate document": { "device control document": [ { @@ -12322,22 +12316,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", "sample document": { "sample identifier": "LoP_pool L23", "location identifier": "L23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31952, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31952, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12345,14 +12345,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "device control aggregate document": { "device control document": [ { @@ -12365,22 +12359,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", "sample document": { "sample identifier": "LoP_pool L24", "location identifier": "L24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2668, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2668, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12388,14 +12388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "device control aggregate document": { "device control document": [ { @@ -12408,22 +12402,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", "sample document": { "sample identifier": "LoP_pool M1", "location identifier": "M1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2556, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2556, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12431,14 +12431,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "device control aggregate document": { "device control document": [ { @@ -12451,22 +12445,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", "sample document": { "sample identifier": "LoP_pool M2", "location identifier": "M2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30964, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30964, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12474,14 +12474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "device control aggregate document": { "device control document": [ { @@ -12494,22 +12488,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", "sample document": { "sample identifier": "LoP_pool M3", "location identifier": "M3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 27216, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 27216, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12517,14 +12517,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "device control aggregate document": { "device control document": [ { @@ -12537,22 +12531,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", "sample document": { "sample identifier": "LoP_pool M4", "location identifier": "M4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32488, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32488, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12560,14 +12560,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "device control aggregate document": { "device control document": [ { @@ -12580,22 +12574,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", "sample document": { "sample identifier": "LoP_pool M5", "location identifier": "M5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32464, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32464, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12603,14 +12603,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "device control aggregate document": { "device control document": [ { @@ -12623,22 +12617,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", "sample document": { "sample identifier": "LoP_pool M6", "location identifier": "M6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35180, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35180, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12646,14 +12646,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "device control aggregate document": { "device control document": [ { @@ -12666,22 +12660,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", "sample document": { "sample identifier": "LoP_pool M7", "location identifier": "M7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32944, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32944, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12689,14 +12689,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "device control aggregate document": { "device control document": [ { @@ -12709,22 +12703,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", "sample document": { "sample identifier": "LoP_pool M8", "location identifier": "M8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33900, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33900, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12732,14 +12732,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "device control aggregate document": { "device control document": [ { @@ -12752,22 +12746,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", "sample document": { "sample identifier": "LoP_pool M9", "location identifier": "M9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31704, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31704, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12775,14 +12775,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "device control aggregate document": { "device control document": [ { @@ -12795,22 +12789,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", "sample document": { "sample identifier": "LoP_pool M10", "location identifier": "M10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35612, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35612, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12818,14 +12818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "device control aggregate document": { "device control document": [ { @@ -12838,22 +12832,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", "sample document": { "sample identifier": "LoP_pool M11", "location identifier": "M11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31420, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31420, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12861,14 +12861,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "device control aggregate document": { "device control document": [ { @@ -12881,22 +12875,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", "sample document": { "sample identifier": "LoP_pool M12", "location identifier": "M12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33700, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33700, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12904,14 +12904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "device control aggregate document": { "device control document": [ { @@ -12924,22 +12918,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", "sample document": { "sample identifier": "LoP_pool M13", "location identifier": "M13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32888, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32888, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12947,14 +12947,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "device control aggregate document": { "device control document": [ { @@ -12967,22 +12961,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", "sample document": { "sample identifier": "LoP_pool M14", "location identifier": "M14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31216, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31216, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -12990,14 +12990,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "device control aggregate document": { "device control document": [ { @@ -13010,22 +13004,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", "sample document": { "sample identifier": "LoP_pool M15", "location identifier": "M15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32188, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32188, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13033,14 +13033,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "device control aggregate document": { "device control document": [ { @@ -13053,22 +13047,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", "sample document": { "sample identifier": "LoP_pool M16", "location identifier": "M16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33092, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33092, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13076,14 +13076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "device control aggregate document": { "device control document": [ { @@ -13096,22 +13090,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", "sample document": { "sample identifier": "LoP_pool M17", "location identifier": "M17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32620, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32620, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13119,14 +13119,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "device control aggregate document": { "device control document": [ { @@ -13139,22 +13133,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", "sample document": { "sample identifier": "LoP_pool M18", "location identifier": "M18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32360, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32360, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13162,14 +13162,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "device control aggregate document": { "device control document": [ { @@ -13182,22 +13176,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", "sample document": { "sample identifier": "LoP_pool M19", "location identifier": "M19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32760, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32760, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13205,14 +13205,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "device control aggregate document": { "device control document": [ { @@ -13225,22 +13219,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", "sample document": { "sample identifier": "LoP_pool M20", "location identifier": "M20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31944, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31944, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13248,14 +13248,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "device control aggregate document": { "device control document": [ { @@ -13268,22 +13262,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", "sample document": { "sample identifier": "LoP_pool M21", "location identifier": "M21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33604, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33604, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13291,14 +13291,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "device control aggregate document": { "device control document": [ { @@ -13311,22 +13305,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", "sample document": { "sample identifier": "LoP_pool M22", "location identifier": "M22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31424, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31424, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13334,14 +13334,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "device control aggregate document": { "device control document": [ { @@ -13354,22 +13348,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", "sample document": { "sample identifier": "LoP_pool M23", "location identifier": "M23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30580, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30580, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13377,14 +13377,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "device control aggregate document": { "device control document": [ { @@ -13397,22 +13391,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", "sample document": { "sample identifier": "LoP_pool M24", "location identifier": "M24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2568, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2568, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13420,14 +13420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "device control aggregate document": { "device control document": [ { @@ -13440,22 +13434,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", "sample document": { "sample identifier": "LoP_pool N1", "location identifier": "N1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2452, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2452, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13463,14 +13463,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "device control aggregate document": { "device control document": [ { @@ -13483,22 +13477,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", "sample document": { "sample identifier": "LoP_pool N2", "location identifier": "N2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31136, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31136, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13506,14 +13506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "device control aggregate document": { "device control document": [ { @@ -13526,22 +13520,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", "sample document": { "sample identifier": "LoP_pool N3", "location identifier": "N3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29300, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29300, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13549,14 +13549,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "device control aggregate document": { "device control document": [ { @@ -13569,22 +13563,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", "sample document": { "sample identifier": "LoP_pool N4", "location identifier": "N4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32952, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32952, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13592,14 +13592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "device control aggregate document": { "device control document": [ { @@ -13612,22 +13606,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", "sample document": { "sample identifier": "LoP_pool N5", "location identifier": "N5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30712, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30712, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13635,14 +13635,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "device control aggregate document": { "device control document": [ { @@ -13655,22 +13649,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", "sample document": { "sample identifier": "LoP_pool N6", "location identifier": "N6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31308, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31308, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13678,14 +13678,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "device control aggregate document": { "device control document": [ { @@ -13698,37 +13692,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", "sample document": { "sample identifier": "LoP_pool N7", "location identifier": "N7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33508, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33508, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "device control aggregate document": { "device control document": [ { @@ -13741,22 +13735,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", "sample document": { "sample identifier": "LoP_pool N8", "location identifier": "N8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32192, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32192, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13764,14 +13764,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "device control aggregate document": { "device control document": [ { @@ -13784,22 +13778,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", "sample document": { "sample identifier": "LoP_pool N9", "location identifier": "N9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30948, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30948, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13807,14 +13807,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "device control aggregate document": { "device control document": [ { @@ -13827,22 +13821,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", "sample document": { "sample identifier": "LoP_pool N10", "location identifier": "N10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33448, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33448, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13850,14 +13850,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "device control aggregate document": { "device control document": [ { @@ -13870,22 +13864,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", "sample document": { "sample identifier": "LoP_pool N11", "location identifier": "N11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31080, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31080, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13893,14 +13893,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "device control aggregate document": { "device control document": [ { @@ -13913,22 +13907,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", "sample document": { "sample identifier": "LoP_pool N12", "location identifier": "N12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32808, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32808, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13936,14 +13936,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "device control aggregate document": { "device control document": [ { @@ -13956,22 +13950,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", "sample document": { "sample identifier": "LoP_pool N13", "location identifier": "N13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33528, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33528, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -13979,14 +13979,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "device control aggregate document": { "device control document": [ { @@ -13999,22 +13993,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", "sample document": { "sample identifier": "LoP_pool N14", "location identifier": "N14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32112, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32112, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14022,14 +14022,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "device control aggregate document": { "device control document": [ { @@ -14042,22 +14036,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", "sample document": { "sample identifier": "LoP_pool N15", "location identifier": "N15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33248, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33248, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14065,14 +14065,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "device control aggregate document": { "device control document": [ { @@ -14085,22 +14079,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", "sample document": { "sample identifier": "LoP_pool N16", "location identifier": "N16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31176, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31176, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14108,14 +14108,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "device control aggregate document": { "device control document": [ { @@ -14128,22 +14122,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", "sample document": { "sample identifier": "LoP_pool N17", "location identifier": "N17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32816, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32816, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14151,14 +14151,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "device control aggregate document": { "device control document": [ { @@ -14171,22 +14165,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", "sample document": { "sample identifier": "LoP_pool N18", "location identifier": "N18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32480, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32480, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14194,14 +14194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "device control aggregate document": { "device control document": [ { @@ -14214,22 +14208,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", "sample document": { "sample identifier": "LoP_pool N19", "location identifier": "N19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31108, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31108, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14237,14 +14237,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "device control aggregate document": { "device control document": [ { @@ -14257,22 +14251,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", "sample document": { "sample identifier": "LoP_pool N20", "location identifier": "N20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31884, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31884, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14280,14 +14280,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "device control aggregate document": { "device control document": [ { @@ -14300,22 +14294,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", "sample document": { "sample identifier": "LoP_pool N21", "location identifier": "N21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32528, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32528, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14323,14 +14323,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "device control aggregate document": { "device control document": [ { @@ -14343,22 +14337,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", "sample document": { "sample identifier": "LoP_pool N22", "location identifier": "N22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30696, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30696, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14366,14 +14366,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "device control aggregate document": { "device control document": [ { @@ -14386,22 +14380,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", "sample document": { "sample identifier": "LoP_pool N23", "location identifier": "N23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29296, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29296, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14409,14 +14409,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "device control aggregate document": { "device control document": [ { @@ -14429,22 +14423,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", "sample document": { "sample identifier": "LoP_pool N24", "location identifier": "N24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2636, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2636, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14452,14 +14452,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "device control aggregate document": { "device control document": [ { @@ -14472,22 +14466,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", "sample document": { "sample identifier": "LoP_pool O1", "location identifier": "O1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2488, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2488, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14495,14 +14495,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "device control aggregate document": { "device control document": [ { @@ -14515,22 +14509,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", "sample document": { "sample identifier": "LoP_pool O2", "location identifier": "O2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28752, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28752, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14538,14 +14538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "device control aggregate document": { "device control document": [ { @@ -14558,22 +14552,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", "sample document": { "sample identifier": "LoP_pool O3", "location identifier": "O3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32684, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32684, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14581,14 +14581,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "device control aggregate document": { "device control document": [ { @@ -14601,22 +14595,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", "sample document": { "sample identifier": "LoP_pool O4", "location identifier": "O4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30888, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30888, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14624,14 +14624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "device control aggregate document": { "device control document": [ { @@ -14644,22 +14638,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", "sample document": { "sample identifier": "LoP_pool O5", "location identifier": "O5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32848, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32848, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14667,14 +14667,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "device control aggregate document": { "device control document": [ { @@ -14687,22 +14681,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", "sample document": { "sample identifier": "LoP_pool O6", "location identifier": "O6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31916, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31916, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14710,14 +14710,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "device control aggregate document": { "device control document": [ { @@ -14730,22 +14724,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", "sample document": { "sample identifier": "LoP_pool O7", "location identifier": "O7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30976, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30976, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14753,14 +14753,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "device control aggregate document": { "device control document": [ { @@ -14773,22 +14767,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", "sample document": { "sample identifier": "LoP_pool O8", "location identifier": "O8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31320, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31320, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14796,14 +14796,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "device control aggregate document": { "device control document": [ { @@ -14816,22 +14810,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", "sample document": { "sample identifier": "LoP_pool O9", "location identifier": "O9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32456, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32456, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14839,14 +14839,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "device control aggregate document": { "device control document": [ { @@ -14859,22 +14853,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", "sample document": { "sample identifier": "LoP_pool O10", "location identifier": "O10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33784, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33784, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14882,14 +14882,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "device control aggregate document": { "device control document": [ { @@ -14902,22 +14896,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", "sample document": { "sample identifier": "LoP_pool O11", "location identifier": "O11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32096, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32096, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14925,14 +14925,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "device control aggregate document": { "device control document": [ { @@ -14945,22 +14939,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", "sample document": { "sample identifier": "LoP_pool O12", "location identifier": "O12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31780, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31780, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -14968,14 +14968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "device control aggregate document": { "device control document": [ { @@ -14988,22 +14982,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", "sample document": { "sample identifier": "LoP_pool O13", "location identifier": "O13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32716, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32716, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15011,14 +15011,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "device control aggregate document": { "device control document": [ { @@ -15031,22 +15025,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", "sample document": { "sample identifier": "LoP_pool O14", "location identifier": "O14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33732, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33732, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15054,14 +15054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "device control aggregate document": { "device control document": [ { @@ -15074,22 +15068,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", "sample document": { "sample identifier": "LoP_pool O15", "location identifier": "O15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32784, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32784, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15097,14 +15097,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "device control aggregate document": { "device control document": [ { @@ -15117,22 +15111,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", "sample document": { "sample identifier": "LoP_pool O16", "location identifier": "O16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31420, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31420, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15140,14 +15140,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "device control aggregate document": { "device control document": [ { @@ -15160,22 +15154,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", "sample document": { "sample identifier": "LoP_pool O17", "location identifier": "O17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30364, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30364, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15183,14 +15183,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "device control aggregate document": { "device control document": [ { @@ -15203,22 +15197,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", "sample document": { "sample identifier": "LoP_pool O18", "location identifier": "O18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32488, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32488, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15226,14 +15226,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "device control aggregate document": { "device control document": [ { @@ -15246,22 +15240,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", "sample document": { "sample identifier": "LoP_pool O19", "location identifier": "O19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32792, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32792, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15269,14 +15269,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "device control aggregate document": { "device control document": [ { @@ -15289,22 +15283,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", "sample document": { "sample identifier": "LoP_pool O20", "location identifier": "O20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33048, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33048, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15312,14 +15312,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "device control aggregate document": { "device control document": [ { @@ -15332,22 +15326,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", "sample document": { "sample identifier": "LoP_pool O21", "location identifier": "O21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30320, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30320, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15355,14 +15355,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "device control aggregate document": { "device control document": [ { @@ -15375,22 +15369,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", "sample document": { "sample identifier": "LoP_pool O22", "location identifier": "O22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31384, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31384, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15398,14 +15398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "device control aggregate document": { "device control document": [ { @@ -15418,22 +15412,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", "sample document": { "sample identifier": "LoP_pool O23", "location identifier": "O23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31400, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31400, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15441,14 +15441,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "device control aggregate document": { "device control document": [ { @@ -15461,22 +15455,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", "sample document": { "sample identifier": "LoP_pool O24", "location identifier": "O24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2596, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2596, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15484,14 +15484,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "device control aggregate document": { "device control document": [ { @@ -15504,22 +15498,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", "sample document": { "sample identifier": "LoP_pool P1", "location identifier": "P1", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2600, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2600, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15527,14 +15527,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "device control aggregate document": { "device control document": [ { @@ -15547,22 +15541,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", "sample document": { "sample identifier": "LoP_pool P2", "location identifier": "P2", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28884, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28884, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15570,14 +15570,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "device control aggregate document": { "device control document": [ { @@ -15590,22 +15584,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", "sample document": { "sample identifier": "LoP_pool P3", "location identifier": "P3", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31564, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31564, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15613,14 +15613,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "device control aggregate document": { "device control document": [ { @@ -15633,22 +15627,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", "sample document": { "sample identifier": "LoP_pool P4", "location identifier": "P4", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30208, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30208, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15656,14 +15656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "device control aggregate document": { "device control document": [ { @@ -15676,22 +15670,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", "sample document": { "sample identifier": "LoP_pool P5", "location identifier": "P5", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31324, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31324, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15699,14 +15699,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "device control aggregate document": { "device control document": [ { @@ -15719,22 +15713,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", "sample document": { "sample identifier": "LoP_pool P6", "location identifier": "P6", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31328, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31328, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15742,14 +15742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "device control aggregate document": { "device control document": [ { @@ -15762,22 +15756,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", "sample document": { "sample identifier": "LoP_pool P7", "location identifier": "P7", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32692, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32692, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15785,14 +15785,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "device control aggregate document": { "device control document": [ { @@ -15805,22 +15799,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", "sample document": { "sample identifier": "LoP_pool P8", "location identifier": "P8", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 29580, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 29580, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15828,14 +15828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "device control aggregate document": { "device control document": [ { @@ -15848,22 +15842,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", "sample document": { "sample identifier": "LoP_pool P9", "location identifier": "P9", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 28996, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 28996, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15871,14 +15871,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "device control aggregate document": { "device control document": [ { @@ -15891,37 +15885,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", "sample document": { "sample identifier": "LoP_pool P10", "location identifier": "P10", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 34300, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 34300, + "unit": "RFU" } } ], - "analytical method identifier": "100130", - "experimental data identifier": "2801", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-07-10T14:10:15+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100130", + "experimental data identifier": "2801", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "device control aggregate document": { "device control document": [ { @@ -15934,22 +15928,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", "sample document": { "sample identifier": "LoP_pool P11", "location identifier": "P11", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 35692, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 35692, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -15957,14 +15957,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "device control aggregate document": { "device control document": [ { @@ -15977,22 +15971,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", "sample document": { "sample identifier": "LoP_pool P12", "location identifier": "P12", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32328, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32328, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16000,14 +16000,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "device control aggregate document": { "device control document": [ { @@ -16020,22 +16014,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", "sample document": { "sample identifier": "LoP_pool P13", "location identifier": "P13", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33936, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33936, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16043,14 +16043,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "device control aggregate document": { "device control document": [ { @@ -16063,22 +16057,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", "sample document": { "sample identifier": "LoP_pool P14", "location identifier": "P14", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33324, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33324, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16086,14 +16086,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "device control aggregate document": { "device control document": [ { @@ -16106,22 +16100,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", "sample document": { "sample identifier": "LoP_pool P15", "location identifier": "P15", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31872, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31872, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16129,14 +16129,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "device control aggregate document": { "device control document": [ { @@ -16149,22 +16143,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", "sample document": { "sample identifier": "LoP_pool P16", "location identifier": "P16", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 32100, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 32100, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16172,14 +16172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "device control aggregate document": { "device control document": [ { @@ -16192,22 +16186,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", "sample document": { "sample identifier": "LoP_pool P17", "location identifier": "P17", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33284, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33284, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16215,14 +16215,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "device control aggregate document": { "device control document": [ { @@ -16235,22 +16229,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", "sample document": { "sample identifier": "LoP_pool P18", "location identifier": "P18", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33368, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33368, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16258,14 +16258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "device control aggregate document": { "device control document": [ { @@ -16278,22 +16272,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", "sample document": { "sample identifier": "LoP_pool P19", "location identifier": "P19", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 31500, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 31500, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16301,14 +16301,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "device control aggregate document": { "device control document": [ { @@ -16321,22 +16315,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", "sample document": { "sample identifier": "LoP_pool P20", "location identifier": "P20", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 34380, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 34380, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16344,14 +16344,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "device control aggregate document": { "device control document": [ { @@ -16364,22 +16358,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", "sample document": { "sample identifier": "LoP_pool P21", "location identifier": "P21", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 33668, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 33668, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16387,14 +16387,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "device control aggregate document": { "device control document": [ { @@ -16407,22 +16401,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", "sample document": { "sample identifier": "LoP_pool P22", "location identifier": "P22", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30996, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30996, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16430,14 +16430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "device control aggregate document": { "device control document": [ { @@ -16450,22 +16444,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", "sample document": { "sample identifier": "LoP_pool P23", "location identifier": "P23", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 30812, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 30812, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" @@ -16473,14 +16473,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-07-10T14:10:15+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "device control aggregate document": { "device control document": [ { @@ -16493,42 +16487,48 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", "sample document": { "sample identifier": "LoP_pool P24", "location identifier": "P24", "sample role type": "unknown sample role", "well plate identifier": "LoP_pool" }, - "fluorescence": { - "value": 2692, - "unit": "RFU" - }, "compartment temperature": { "value": 23.17, "unit": "degC" + }, + "fluorescence": { + "value": 2692, + "unit": "RFU" } } ], + "measurement time": "2023-07-10T14:10:15+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100130", "experimental data identifier": "2801", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision#Alpha_680nm", - "model number": "EnVision", - "equipment serial number": "1051017" - }, "data system document": { + "ASM file identifier": "PE_Envision_fluorescence_example03.json", + "data system instance identifier": "N/A", "file name": "PE_Envision_fluorescence_example03.csv", - "ASM file identifier": "N/A", "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.14.3049.1193", "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.14.3049.1193" + }, + "device system document": { + "device identifier": "EnVision#Alpha_680nm", + "model number": "EnVision", + "equipment serial number": "1051017" } } } diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json index de2a797d4..443ce03eb 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_fluorescence_example04.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "device control aggregate document": { "device control document": [ { @@ -24,22 +18,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "sample document": { "sample identifier": "81 A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -47,14 +47,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "device control aggregate document": { "device control document": [ { @@ -67,22 +61,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "sample document": { "sample identifier": "81 A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -90,14 +90,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "device control aggregate document": { "device control document": [ { @@ -110,22 +104,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "sample document": { "sample identifier": "81 A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -133,14 +133,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "device control aggregate document": { "device control document": [ { @@ -153,22 +147,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "sample document": { "sample identifier": "81 A4", "location identifier": "A4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -176,14 +176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "device control aggregate document": { "device control document": [ { @@ -196,22 +190,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "sample document": { "sample identifier": "81 A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -219,14 +219,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "device control aggregate document": { "device control document": [ { @@ -239,22 +233,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "sample document": { "sample identifier": "81 A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -262,14 +262,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "device control aggregate document": { "device control document": [ { @@ -282,22 +276,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "sample document": { "sample identifier": "81 A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -305,14 +305,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "device control aggregate document": { "device control document": [ { @@ -325,22 +319,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "sample document": { "sample identifier": "81 A8", "location identifier": "A8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -348,14 +348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "device control aggregate document": { "device control document": [ { @@ -368,22 +362,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "sample document": { "sample identifier": "81 A9", "location identifier": "A9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -391,14 +391,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "device control aggregate document": { "device control document": [ { @@ -411,22 +405,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "sample document": { "sample identifier": "81 A10", "location identifier": "A10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -434,14 +434,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "device control aggregate document": { "device control document": [ { @@ -454,22 +448,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "sample document": { "sample identifier": "81 A11", "location identifier": "A11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -477,14 +477,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "device control aggregate document": { "device control document": [ { @@ -497,22 +491,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "sample document": { "sample identifier": "81 A12", "location identifier": "A12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -520,14 +520,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "device control aggregate document": { "device control document": [ { @@ -540,22 +534,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "sample document": { "sample identifier": "81 A13", "location identifier": "A13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -563,14 +563,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "device control aggregate document": { "device control document": [ { @@ -583,22 +577,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "sample document": { "sample identifier": "81 A14", "location identifier": "A14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -606,14 +606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "device control aggregate document": { "device control document": [ { @@ -626,22 +620,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "sample document": { "sample identifier": "81 A15", "location identifier": "A15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -649,14 +649,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "device control aggregate document": { "device control document": [ { @@ -669,22 +663,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "sample document": { "sample identifier": "81 A16", "location identifier": "A16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -692,14 +692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "device control aggregate document": { "device control document": [ { @@ -712,22 +706,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "sample document": { "sample identifier": "81 A17", "location identifier": "A17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -735,14 +735,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "device control aggregate document": { "device control document": [ { @@ -755,22 +749,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "sample document": { "sample identifier": "81 A18", "location identifier": "A18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -778,14 +778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "device control aggregate document": { "device control document": [ { @@ -798,22 +792,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "sample document": { "sample identifier": "81 A19", "location identifier": "A19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -821,14 +821,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "device control aggregate document": { "device control document": [ { @@ -841,22 +835,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "sample document": { "sample identifier": "81 A20", "location identifier": "A20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -864,14 +864,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "device control aggregate document": { "device control document": [ { @@ -884,22 +878,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "sample document": { "sample identifier": "81 A21", "location identifier": "A21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -907,14 +907,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "device control aggregate document": { "device control document": [ { @@ -927,22 +921,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "sample document": { "sample identifier": "81 A22", "location identifier": "A22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -950,14 +950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "device control aggregate document": { "device control document": [ { @@ -970,22 +964,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "sample document": { "sample identifier": "81 A23", "location identifier": "A23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -993,14 +993,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "device control aggregate document": { "device control document": [ { @@ -1013,22 +1007,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "sample document": { "sample identifier": "81 A24", "location identifier": "A24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1036,14 +1036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "device control aggregate document": { "device control document": [ { @@ -1056,22 +1050,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "sample document": { "sample identifier": "81 B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1079,14 +1079,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "device control aggregate document": { "device control document": [ { @@ -1099,22 +1093,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "sample document": { "sample identifier": "81 B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" - } + }, + "fluorescence": { + "value": 40, + "unit": "RFU" + } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1122,14 +1122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "device control aggregate document": { "device control document": [ { @@ -1142,22 +1136,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "sample document": { "sample identifier": "81 B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1165,14 +1165,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "device control aggregate document": { "device control document": [ { @@ -1185,22 +1179,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "sample document": { "sample identifier": "81 B4", "location identifier": "B4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1208,14 +1208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "device control aggregate document": { "device control document": [ { @@ -1228,22 +1222,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "sample document": { "sample identifier": "81 B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1251,14 +1251,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "device control aggregate document": { "device control document": [ { @@ -1271,22 +1265,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "sample document": { "sample identifier": "81 B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1294,14 +1294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "device control aggregate document": { "device control document": [ { @@ -1314,22 +1308,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "sample document": { "sample identifier": "81 B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1337,14 +1337,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "device control aggregate document": { "device control document": [ { @@ -1357,22 +1351,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "sample document": { "sample identifier": "81 B8", "location identifier": "B8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1380,14 +1380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", "device control aggregate document": { "device control document": [ { @@ -1400,22 +1394,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", "sample document": { "sample identifier": "81 B9", "location identifier": "B9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1423,14 +1423,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", "device control aggregate document": { "device control document": [ { @@ -1443,22 +1437,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", "sample document": { "sample identifier": "81 B10", "location identifier": "B10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1466,14 +1466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", "device control aggregate document": { "device control document": [ { @@ -1486,22 +1480,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", "sample document": { "sample identifier": "81 B11", "location identifier": "B11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1509,14 +1509,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", "device control aggregate document": { "device control document": [ { @@ -1529,22 +1523,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", "sample document": { "sample identifier": "81 B12", "location identifier": "B12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1552,14 +1552,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", "device control aggregate document": { "device control document": [ { @@ -1572,22 +1566,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", "sample document": { "sample identifier": "81 B13", "location identifier": "B13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1595,14 +1595,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", "device control aggregate document": { "device control document": [ { @@ -1615,22 +1609,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", "sample document": { "sample identifier": "81 B14", "location identifier": "B14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1638,14 +1638,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", "device control aggregate document": { "device control document": [ { @@ -1658,22 +1652,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", "sample document": { "sample identifier": "81 B15", "location identifier": "B15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1681,14 +1681,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", "device control aggregate document": { "device control document": [ { @@ -1701,22 +1695,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", "sample document": { "sample identifier": "81 B16", "location identifier": "B16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1724,14 +1724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", "device control aggregate document": { "device control document": [ { @@ -1744,22 +1738,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", "sample document": { "sample identifier": "81 B17", "location identifier": "B17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1767,14 +1767,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", "device control aggregate document": { "device control document": [ { @@ -1787,22 +1781,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", "sample document": { "sample identifier": "81 B18", "location identifier": "B18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1810,14 +1810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", "device control aggregate document": { "device control document": [ { @@ -1830,22 +1824,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", "sample document": { "sample identifier": "81 B19", "location identifier": "B19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1853,14 +1853,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", "device control aggregate document": { "device control document": [ { @@ -1873,22 +1867,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", "sample document": { "sample identifier": "81 B20", "location identifier": "B20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1896,14 +1896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", "device control aggregate document": { "device control document": [ { @@ -1916,22 +1910,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", "sample document": { "sample identifier": "81 B21", "location identifier": "B21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1939,14 +1939,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", "device control aggregate document": { "device control document": [ { @@ -1959,22 +1953,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", "sample document": { "sample identifier": "81 B22", "location identifier": "B22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -1982,14 +1982,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", "device control aggregate document": { "device control document": [ { @@ -2002,22 +1996,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", "sample document": { "sample identifier": "81 B23", "location identifier": "B23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2025,14 +2025,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", "device control aggregate document": { "device control document": [ { @@ -2045,22 +2039,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", "sample document": { "sample identifier": "81 B24", "location identifier": "B24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2068,14 +2068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", "device control aggregate document": { "device control document": [ { @@ -2088,22 +2082,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", "sample document": { "sample identifier": "81 C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2111,14 +2111,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", "device control aggregate document": { "device control document": [ { @@ -2131,22 +2125,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", "sample document": { "sample identifier": "81 C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2154,14 +2154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", "device control aggregate document": { "device control document": [ { @@ -2174,22 +2168,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", "sample document": { "sample identifier": "81 C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2197,14 +2197,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", "device control aggregate document": { "device control document": [ { @@ -2217,22 +2211,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", "sample document": { "sample identifier": "81 C4", "location identifier": "C4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2240,14 +2240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", "device control aggregate document": { "device control document": [ { @@ -2260,22 +2254,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", "sample document": { "sample identifier": "81 C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2283,14 +2283,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", "device control aggregate document": { "device control document": [ { @@ -2303,22 +2297,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", "sample document": { "sample identifier": "81 C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2326,14 +2326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", "device control aggregate document": { "device control document": [ { @@ -2346,22 +2340,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", "sample document": { "sample identifier": "81 C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2369,14 +2369,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", "device control aggregate document": { "device control document": [ { @@ -2389,22 +2383,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", "sample document": { "sample identifier": "81 C8", "location identifier": "C8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2412,14 +2412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", "device control aggregate document": { "device control document": [ { @@ -2432,22 +2426,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", "sample document": { "sample identifier": "81 C9", "location identifier": "C9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2455,14 +2455,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", "device control aggregate document": { "device control document": [ { @@ -2475,22 +2469,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", "sample document": { "sample identifier": "81 C10", "location identifier": "C10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2498,14 +2498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", "device control aggregate document": { "device control document": [ { @@ -2518,22 +2512,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", "sample document": { "sample identifier": "81 C11", "location identifier": "C11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2541,14 +2541,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", "device control aggregate document": { "device control document": [ { @@ -2561,22 +2555,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", "sample document": { "sample identifier": "81 C12", "location identifier": "C12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2584,14 +2584,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", "device control aggregate document": { "device control document": [ { @@ -2604,22 +2598,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", "sample document": { "sample identifier": "81 C13", "location identifier": "C13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2627,14 +2627,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", "device control aggregate document": { "device control document": [ { @@ -2647,22 +2641,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", "sample document": { "sample identifier": "81 C14", "location identifier": "C14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2670,14 +2670,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", "device control aggregate document": { "device control document": [ { @@ -2690,22 +2684,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", "sample document": { "sample identifier": "81 C15", "location identifier": "C15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2713,14 +2713,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", "device control aggregate document": { "device control document": [ { @@ -2733,22 +2727,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", "sample document": { "sample identifier": "81 C16", "location identifier": "C16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2756,14 +2756,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", "device control aggregate document": { "device control document": [ { @@ -2776,22 +2770,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", "sample document": { "sample identifier": "81 C17", "location identifier": "C17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2799,14 +2799,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", "device control aggregate document": { "device control document": [ { @@ -2819,22 +2813,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", "sample document": { "sample identifier": "81 C18", "location identifier": "C18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2842,14 +2842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", "device control aggregate document": { "device control document": [ { @@ -2862,22 +2856,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", "sample document": { "sample identifier": "81 C19", "location identifier": "C19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2885,14 +2885,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", "device control aggregate document": { "device control document": [ { @@ -2905,22 +2899,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", "sample document": { "sample identifier": "81 C20", "location identifier": "C20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2928,14 +2928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", "device control aggregate document": { "device control document": [ { @@ -2948,22 +2942,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", "sample document": { "sample identifier": "81 C21", "location identifier": "C21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -2971,14 +2971,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", "device control aggregate document": { "device control document": [ { @@ -2991,22 +2985,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", "sample document": { "sample identifier": "81 C22", "location identifier": "C22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3014,14 +3014,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", "device control aggregate document": { "device control document": [ { @@ -3034,22 +3028,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", "sample document": { "sample identifier": "81 C23", "location identifier": "C23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3057,14 +3057,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", "device control aggregate document": { "device control document": [ { @@ -3077,22 +3071,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", "sample document": { "sample identifier": "81 C24", "location identifier": "C24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3100,14 +3100,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", "device control aggregate document": { "device control document": [ { @@ -3120,22 +3114,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", "sample document": { "sample identifier": "81 D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3143,14 +3143,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", "device control aggregate document": { "device control document": [ { @@ -3163,22 +3157,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", "sample document": { "sample identifier": "81 D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3186,14 +3186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", "device control aggregate document": { "device control document": [ { @@ -3206,22 +3200,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", "sample document": { "sample identifier": "81 D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3229,14 +3229,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", "device control aggregate document": { "device control document": [ { @@ -3249,22 +3243,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", "sample document": { "sample identifier": "81 D4", "location identifier": "D4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3272,14 +3272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", "device control aggregate document": { "device control document": [ { @@ -3292,22 +3286,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", "sample document": { "sample identifier": "81 D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" - } - } - ], + }, + "fluorescence": { + "value": 32, + "unit": "RFU" + } + } + ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3315,14 +3315,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", "device control aggregate document": { "device control document": [ { @@ -3335,22 +3329,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", "sample document": { "sample identifier": "81 D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3358,14 +3358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", "device control aggregate document": { "device control document": [ { @@ -3378,22 +3372,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", "sample document": { "sample identifier": "81 D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3401,14 +3401,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", "device control aggregate document": { "device control document": [ { @@ -3421,22 +3415,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", "sample document": { "sample identifier": "81 D8", "location identifier": "D8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 56, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 56, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3444,14 +3444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", "device control aggregate document": { "device control document": [ { @@ -3464,22 +3458,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", "sample document": { "sample identifier": "81 D9", "location identifier": "D9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3487,14 +3487,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", "device control aggregate document": { "device control document": [ { @@ -3507,22 +3501,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", "sample document": { "sample identifier": "81 D10", "location identifier": "D10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 64, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 64, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3530,14 +3530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", "device control aggregate document": { "device control document": [ { @@ -3550,22 +3544,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", "sample document": { "sample identifier": "81 D11", "location identifier": "D11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3573,14 +3573,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", "device control aggregate document": { "device control document": [ { @@ -3593,22 +3587,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", "sample document": { "sample identifier": "81 D12", "location identifier": "D12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3616,14 +3616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", "device control aggregate document": { "device control document": [ { @@ -3636,22 +3630,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", "sample document": { "sample identifier": "81 D13", "location identifier": "D13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3659,14 +3659,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", "device control aggregate document": { "device control document": [ { @@ -3679,22 +3673,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", "sample document": { "sample identifier": "81 D14", "location identifier": "D14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3702,14 +3702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", "device control aggregate document": { "device control document": [ { @@ -3722,22 +3716,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", "sample document": { "sample identifier": "81 D15", "location identifier": "D15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3745,14 +3745,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", "device control aggregate document": { "device control document": [ { @@ -3765,22 +3759,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", "sample document": { "sample identifier": "81 D16", "location identifier": "D16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3788,14 +3788,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", "device control aggregate document": { "device control document": [ { @@ -3808,22 +3802,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", "sample document": { "sample identifier": "81 D17", "location identifier": "D17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3831,14 +3831,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", "device control aggregate document": { "device control document": [ { @@ -3851,22 +3845,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", "sample document": { "sample identifier": "81 D18", "location identifier": "D18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3874,14 +3874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "device control aggregate document": { "device control document": [ { @@ -3894,22 +3888,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "sample document": { "sample identifier": "81 D19", "location identifier": "D19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3917,14 +3917,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", "device control aggregate document": { "device control document": [ { @@ -3937,22 +3931,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", "sample document": { "sample identifier": "81 D20", "location identifier": "D20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -3960,14 +3960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", "device control aggregate document": { "device control document": [ { @@ -3980,22 +3974,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", "sample document": { "sample identifier": "81 D21", "location identifier": "D21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4003,14 +4003,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", "device control aggregate document": { "device control document": [ { @@ -4023,22 +4017,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", "sample document": { "sample identifier": "81 D22", "location identifier": "D22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4046,14 +4046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", "device control aggregate document": { "device control document": [ { @@ -4066,22 +4060,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", "sample document": { "sample identifier": "81 D23", "location identifier": "D23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4089,14 +4089,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", "device control aggregate document": { "device control document": [ { @@ -4109,22 +4103,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", "sample document": { "sample identifier": "81 D24", "location identifier": "D24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4132,14 +4132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", "device control aggregate document": { "device control document": [ { @@ -4152,22 +4146,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", "sample document": { "sample identifier": "81 E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4175,14 +4175,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", "device control aggregate document": { "device control document": [ { @@ -4195,22 +4189,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", "sample document": { "sample identifier": "81 E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4218,14 +4218,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", "device control aggregate document": { "device control document": [ { @@ -4238,22 +4232,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", "sample document": { "sample identifier": "81 E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4261,14 +4261,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", "device control aggregate document": { "device control document": [ { @@ -4281,22 +4275,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", "sample document": { "sample identifier": "81 E4", "location identifier": "E4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 56, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 56, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4304,14 +4304,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", "device control aggregate document": { "device control document": [ { @@ -4324,22 +4318,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", "sample document": { "sample identifier": "81 E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4347,14 +4347,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", "device control aggregate document": { "device control document": [ { @@ -4367,22 +4361,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", "sample document": { "sample identifier": "81 E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4390,14 +4390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", "device control aggregate document": { "device control document": [ { @@ -4410,22 +4404,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", "sample document": { "sample identifier": "81 E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4433,14 +4433,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", "device control aggregate document": { "device control document": [ { @@ -4453,22 +4447,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", "sample document": { "sample identifier": "81 E8", "location identifier": "E8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4476,14 +4476,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", "device control aggregate document": { "device control document": [ { @@ -4496,22 +4490,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", "sample document": { "sample identifier": "81 E9", "location identifier": "E9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4519,14 +4519,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", "device control aggregate document": { "device control document": [ { @@ -4539,22 +4533,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", "sample document": { "sample identifier": "81 E10", "location identifier": "E10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4562,14 +4562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", "device control aggregate document": { "device control document": [ { @@ -4582,22 +4576,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", "sample document": { "sample identifier": "81 E11", "location identifier": "E11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4605,14 +4605,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", "device control aggregate document": { "device control document": [ { @@ -4625,22 +4619,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", "sample document": { "sample identifier": "81 E12", "location identifier": "E12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4648,14 +4648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", "device control aggregate document": { "device control document": [ { @@ -4668,22 +4662,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", "sample document": { "sample identifier": "81 E13", "location identifier": "E13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4691,14 +4691,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", "device control aggregate document": { "device control document": [ { @@ -4711,22 +4705,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", "sample document": { "sample identifier": "81 E14", "location identifier": "E14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4734,14 +4734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", "device control aggregate document": { "device control document": [ { @@ -4754,22 +4748,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", "sample document": { "sample identifier": "81 E15", "location identifier": "E15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4777,14 +4777,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", "device control aggregate document": { "device control document": [ { @@ -4797,22 +4791,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", "sample document": { "sample identifier": "81 E16", "location identifier": "E16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4820,14 +4820,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", "device control aggregate document": { "device control document": [ { @@ -4840,22 +4834,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", "sample document": { "sample identifier": "81 E17", "location identifier": "E17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4863,14 +4863,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", "device control aggregate document": { "device control document": [ { @@ -4883,22 +4877,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", "sample document": { "sample identifier": "81 E18", "location identifier": "E18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4906,14 +4906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", "device control aggregate document": { "device control document": [ { @@ -4926,22 +4920,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", "sample document": { "sample identifier": "81 E19", "location identifier": "E19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4949,14 +4949,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", "device control aggregate document": { "device control document": [ { @@ -4969,22 +4963,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", "sample document": { "sample identifier": "81 E20", "location identifier": "E20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -4992,14 +4992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", "device control aggregate document": { "device control document": [ { @@ -5012,22 +5006,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", "sample document": { "sample identifier": "81 E21", "location identifier": "E21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5035,14 +5035,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", "device control aggregate document": { "device control document": [ { @@ -5055,22 +5049,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", "sample document": { "sample identifier": "81 E22", "location identifier": "E22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5078,14 +5078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", "device control aggregate document": { "device control document": [ { @@ -5098,37 +5092,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", "sample document": { "sample identifier": "81 E23", "location identifier": "E23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", "device control aggregate document": { "device control document": [ { @@ -5141,22 +5135,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", "sample document": { "sample identifier": "81 E24", "location identifier": "E24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5164,14 +5164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", "device control aggregate document": { "device control document": [ { @@ -5184,22 +5178,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", "sample document": { "sample identifier": "81 F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5207,14 +5207,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", "device control aggregate document": { "device control document": [ { @@ -5227,22 +5221,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", "sample document": { "sample identifier": "81 F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5250,14 +5250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", "device control aggregate document": { "device control document": [ { @@ -5270,22 +5264,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", "sample document": { "sample identifier": "81 F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5293,14 +5293,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", "device control aggregate document": { "device control document": [ { @@ -5313,22 +5307,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", "sample document": { "sample identifier": "81 F4", "location identifier": "F4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5336,14 +5336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", "device control aggregate document": { "device control document": [ { @@ -5356,22 +5350,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", "sample document": { "sample identifier": "81 F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5379,14 +5379,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", "device control aggregate document": { "device control document": [ { @@ -5399,22 +5393,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", "sample document": { "sample identifier": "81 F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5422,14 +5422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", "device control aggregate document": { "device control document": [ { @@ -5442,22 +5436,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", "sample document": { "sample identifier": "81 F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5465,14 +5465,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", "device control aggregate document": { "device control document": [ { @@ -5485,22 +5479,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", "sample document": { "sample identifier": "81 F8", "location identifier": "F8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5508,14 +5508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", "device control aggregate document": { "device control document": [ { @@ -5528,22 +5522,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", "sample document": { "sample identifier": "81 F9", "location identifier": "F9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5551,14 +5551,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", "device control aggregate document": { "device control document": [ { @@ -5571,22 +5565,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", "sample document": { "sample identifier": "81 F10", "location identifier": "F10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5594,14 +5594,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", "device control aggregate document": { "device control document": [ { @@ -5614,22 +5608,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", "sample document": { "sample identifier": "81 F11", "location identifier": "F11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5637,14 +5637,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", "device control aggregate document": { "device control document": [ { @@ -5657,22 +5651,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", "sample document": { "sample identifier": "81 F12", "location identifier": "F12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5680,14 +5680,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", "device control aggregate document": { "device control document": [ { @@ -5700,22 +5694,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", "sample document": { "sample identifier": "81 F13", "location identifier": "F13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5723,14 +5723,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", "device control aggregate document": { "device control document": [ { @@ -5743,22 +5737,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", "sample document": { "sample identifier": "81 F14", "location identifier": "F14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5766,14 +5766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", "device control aggregate document": { "device control document": [ { @@ -5786,22 +5780,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", "sample document": { "sample identifier": "81 F15", "location identifier": "F15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5809,14 +5809,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", "device control aggregate document": { "device control document": [ { @@ -5829,22 +5823,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", "sample document": { "sample identifier": "81 F16", "location identifier": "F16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5852,14 +5852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", "device control aggregate document": { "device control document": [ { @@ -5872,22 +5866,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", "sample document": { "sample identifier": "81 F17", "location identifier": "F17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5895,14 +5895,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", "device control aggregate document": { "device control document": [ { @@ -5915,22 +5909,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", "sample document": { "sample identifier": "81 F18", "location identifier": "F18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5938,14 +5938,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", "device control aggregate document": { "device control document": [ { @@ -5958,22 +5952,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", "sample document": { "sample identifier": "81 F19", "location identifier": "F19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -5981,14 +5981,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", "device control aggregate document": { "device control document": [ { @@ -6001,22 +5995,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", "sample document": { "sample identifier": "81 F20", "location identifier": "F20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6024,14 +6024,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", "device control aggregate document": { "device control document": [ { @@ -6044,22 +6038,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", "sample document": { "sample identifier": "81 F21", "location identifier": "F21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6067,14 +6067,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", "device control aggregate document": { "device control document": [ { @@ -6087,22 +6081,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", "sample document": { "sample identifier": "81 F22", "location identifier": "F22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6110,14 +6110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", "device control aggregate document": { "device control document": [ { @@ -6130,22 +6124,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", "sample document": { "sample identifier": "81 F23", "location identifier": "F23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6153,14 +6153,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", "device control aggregate document": { "device control document": [ { @@ -6173,22 +6167,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", "sample document": { "sample identifier": "81 F24", "location identifier": "F24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6196,14 +6196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", "device control aggregate document": { "device control document": [ { @@ -6216,22 +6210,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", "sample document": { "sample identifier": "81 G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6239,14 +6239,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", "device control aggregate document": { "device control document": [ { @@ -6259,22 +6253,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", "sample document": { "sample identifier": "81 G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6282,14 +6282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", "device control aggregate document": { "device control document": [ { @@ -6302,22 +6296,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", "sample document": { "sample identifier": "81 G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6325,14 +6325,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", "device control aggregate document": { "device control document": [ { @@ -6345,22 +6339,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", "sample document": { "sample identifier": "81 G4", "location identifier": "G4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6368,14 +6368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", "device control aggregate document": { "device control document": [ { @@ -6388,22 +6382,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", "sample document": { "sample identifier": "81 G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6411,14 +6411,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", "device control aggregate document": { "device control document": [ { @@ -6431,22 +6425,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", "sample document": { "sample identifier": "81 G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6454,14 +6454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", "device control aggregate document": { "device control document": [ { @@ -6474,22 +6468,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", "sample document": { "sample identifier": "81 G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6497,14 +6497,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", "device control aggregate document": { "device control document": [ { @@ -6517,22 +6511,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", "sample document": { "sample identifier": "81 G8", "location identifier": "G8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6540,14 +6540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", "device control aggregate document": { "device control document": [ { @@ -6560,22 +6554,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", "sample document": { "sample identifier": "81 G9", "location identifier": "G9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6583,14 +6583,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", "device control aggregate document": { "device control document": [ { @@ -6603,22 +6597,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", "sample document": { "sample identifier": "81 G10", "location identifier": "G10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6626,14 +6626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", "device control aggregate document": { "device control document": [ { @@ -6646,22 +6640,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", "sample document": { "sample identifier": "81 G11", "location identifier": "G11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6669,14 +6669,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", "device control aggregate document": { "device control document": [ { @@ -6689,22 +6683,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", "sample document": { "sample identifier": "81 G12", "location identifier": "G12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6712,14 +6712,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", "device control aggregate document": { "device control document": [ { @@ -6732,22 +6726,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", "sample document": { "sample identifier": "81 G13", "location identifier": "G13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6755,14 +6755,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", "device control aggregate document": { "device control document": [ { @@ -6775,22 +6769,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", "sample document": { "sample identifier": "81 G14", "location identifier": "G14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 56, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 56, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6798,14 +6798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", "device control aggregate document": { "device control document": [ { @@ -6818,22 +6812,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", "sample document": { "sample identifier": "81 G15", "location identifier": "G15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6841,14 +6841,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", "device control aggregate document": { "device control document": [ { @@ -6861,22 +6855,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", "sample document": { "sample identifier": "81 G16", "location identifier": "G16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6884,14 +6884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", "device control aggregate document": { "device control document": [ { @@ -6904,22 +6898,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", "sample document": { "sample identifier": "81 G17", "location identifier": "G17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6927,14 +6927,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", "device control aggregate document": { "device control document": [ { @@ -6947,22 +6941,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", "sample document": { "sample identifier": "81 G18", "location identifier": "G18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -6970,14 +6970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", "device control aggregate document": { "device control document": [ { @@ -6990,22 +6984,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", "sample document": { "sample identifier": "81 G19", "location identifier": "G19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7013,14 +7013,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", "device control aggregate document": { "device control document": [ { @@ -7033,22 +7027,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", "sample document": { "sample identifier": "81 G20", "location identifier": "G20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7056,14 +7056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", "device control aggregate document": { "device control document": [ { @@ -7076,22 +7070,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", "sample document": { "sample identifier": "81 G21", "location identifier": "G21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7099,14 +7099,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", "device control aggregate document": { "device control document": [ { @@ -7119,22 +7113,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", "sample document": { "sample identifier": "81 G22", "location identifier": "G22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7142,14 +7142,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", "device control aggregate document": { "device control document": [ { @@ -7162,22 +7156,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", "sample document": { "sample identifier": "81 G23", "location identifier": "G23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7185,14 +7185,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", "device control aggregate document": { "device control document": [ { @@ -7205,22 +7199,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", "sample document": { "sample identifier": "81 G24", "location identifier": "G24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7228,14 +7228,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", "device control aggregate document": { "device control document": [ { @@ -7248,22 +7242,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", "sample document": { "sample identifier": "81 H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7271,14 +7271,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", "device control aggregate document": { "device control document": [ { @@ -7291,37 +7285,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", "sample document": { "sample identifier": "81 H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", "device control aggregate document": { "device control document": [ { @@ -7334,22 +7328,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", "sample document": { "sample identifier": "81 H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7357,14 +7357,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", "device control aggregate document": { "device control document": [ { @@ -7377,22 +7371,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", "sample document": { "sample identifier": "81 H4", "location identifier": "H4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7400,14 +7400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", "device control aggregate document": { "device control document": [ { @@ -7420,22 +7414,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", "sample document": { "sample identifier": "81 H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7443,14 +7443,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", "device control aggregate document": { "device control document": [ { @@ -7463,22 +7457,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", "sample document": { "sample identifier": "81 H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7486,14 +7486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", "device control aggregate document": { "device control document": [ { @@ -7506,22 +7500,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", "sample document": { "sample identifier": "81 H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7529,14 +7529,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", "device control aggregate document": { "device control document": [ { @@ -7549,22 +7543,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", "sample document": { "sample identifier": "81 H8", "location identifier": "H8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7572,14 +7572,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", "device control aggregate document": { "device control document": [ { @@ -7592,22 +7586,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", "sample document": { "sample identifier": "81 H9", "location identifier": "H9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7615,14 +7615,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", "device control aggregate document": { "device control document": [ { @@ -7635,22 +7629,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", "sample document": { "sample identifier": "81 H10", "location identifier": "H10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7658,14 +7658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", "device control aggregate document": { "device control document": [ { @@ -7678,22 +7672,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", "sample document": { "sample identifier": "81 H11", "location identifier": "H11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7701,14 +7701,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", "device control aggregate document": { "device control document": [ { @@ -7721,22 +7715,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", "sample document": { "sample identifier": "81 H12", "location identifier": "H12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7744,14 +7744,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", "device control aggregate document": { "device control document": [ { @@ -7764,22 +7758,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", "sample document": { "sample identifier": "81 H13", "location identifier": "H13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7787,14 +7787,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", "device control aggregate document": { "device control document": [ { @@ -7807,22 +7801,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", "sample document": { "sample identifier": "81 H14", "location identifier": "H14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7830,14 +7830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", "device control aggregate document": { "device control document": [ { @@ -7850,22 +7844,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", "sample document": { "sample identifier": "81 H15", "location identifier": "H15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7873,14 +7873,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", "device control aggregate document": { "device control document": [ { @@ -7893,22 +7887,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", "sample document": { "sample identifier": "81 H16", "location identifier": "H16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7916,14 +7916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", "device control aggregate document": { "device control document": [ { @@ -7936,22 +7930,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", "sample document": { "sample identifier": "81 H17", "location identifier": "H17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -7959,14 +7959,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", "device control aggregate document": { "device control document": [ { @@ -7979,22 +7973,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", "sample document": { "sample identifier": "81 H18", "location identifier": "H18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8002,14 +8002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", "device control aggregate document": { "device control document": [ { @@ -8022,22 +8016,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", "sample document": { "sample identifier": "81 H19", "location identifier": "H19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8045,14 +8045,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", "device control aggregate document": { "device control document": [ { @@ -8065,22 +8059,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", "sample document": { "sample identifier": "81 H20", "location identifier": "H20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8088,14 +8088,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", "device control aggregate document": { "device control document": [ { @@ -8108,22 +8102,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", "sample document": { "sample identifier": "81 H21", "location identifier": "H21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8131,14 +8131,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", "device control aggregate document": { "device control document": [ { @@ -8151,22 +8145,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", "sample document": { "sample identifier": "81 H22", "location identifier": "H22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8174,14 +8174,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", "device control aggregate document": { "device control document": [ { @@ -8194,22 +8188,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", "sample document": { "sample identifier": "81 H23", "location identifier": "H23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8217,14 +8217,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", "device control aggregate document": { "device control document": [ { @@ -8237,22 +8231,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", "sample document": { "sample identifier": "81 H24", "location identifier": "H24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8260,14 +8260,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", "device control aggregate document": { "device control document": [ { @@ -8280,22 +8274,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", "sample document": { "sample identifier": "81 I1", "location identifier": "I1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8303,14 +8303,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", "device control aggregate document": { "device control document": [ { @@ -8323,22 +8317,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", "sample document": { "sample identifier": "81 I2", "location identifier": "I2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8346,14 +8346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", "device control aggregate document": { "device control document": [ { @@ -8366,22 +8360,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", "sample document": { "sample identifier": "81 I3", "location identifier": "I3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8389,14 +8389,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", "device control aggregate document": { "device control document": [ { @@ -8409,22 +8403,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", "sample document": { "sample identifier": "81 I4", "location identifier": "I4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8432,14 +8432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", "device control aggregate document": { "device control document": [ { @@ -8452,22 +8446,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", "sample document": { "sample identifier": "81 I5", "location identifier": "I5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8475,14 +8475,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", "device control aggregate document": { "device control document": [ { @@ -8495,22 +8489,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", "sample document": { "sample identifier": "81 I6", "location identifier": "I6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8518,14 +8518,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", "device control aggregate document": { "device control document": [ { @@ -8538,22 +8532,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", "sample document": { "sample identifier": "81 I7", "location identifier": "I7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8561,14 +8561,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", "device control aggregate document": { "device control document": [ { @@ -8581,22 +8575,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", "sample document": { "sample identifier": "81 I8", "location identifier": "I8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8604,14 +8604,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", "device control aggregate document": { "device control document": [ { @@ -8624,22 +8618,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", "sample document": { "sample identifier": "81 I9", "location identifier": "I9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8647,14 +8647,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", "device control aggregate document": { "device control document": [ { @@ -8667,22 +8661,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", "sample document": { "sample identifier": "81 I10", "location identifier": "I10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8690,14 +8690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", "device control aggregate document": { "device control document": [ { @@ -8710,22 +8704,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", "sample document": { "sample identifier": "81 I11", "location identifier": "I11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8733,14 +8733,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", "device control aggregate document": { "device control document": [ { @@ -8753,22 +8747,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", "sample document": { "sample identifier": "81 I12", "location identifier": "I12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8776,14 +8776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", "device control aggregate document": { "device control document": [ { @@ -8796,22 +8790,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", "sample document": { "sample identifier": "81 I13", "location identifier": "I13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8819,14 +8819,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", "device control aggregate document": { "device control document": [ { @@ -8839,22 +8833,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", "sample document": { "sample identifier": "81 I14", "location identifier": "I14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8862,14 +8862,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", "device control aggregate document": { "device control document": [ { @@ -8882,22 +8876,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", "sample document": { "sample identifier": "81 I15", "location identifier": "I15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8905,14 +8905,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", "device control aggregate document": { "device control document": [ { @@ -8925,22 +8919,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", "sample document": { "sample identifier": "81 I16", "location identifier": "I16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8948,14 +8948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", "device control aggregate document": { "device control document": [ { @@ -8968,22 +8962,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", "sample document": { "sample identifier": "81 I17", "location identifier": "I17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -8991,14 +8991,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", "device control aggregate document": { "device control document": [ { @@ -9011,22 +9005,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", "sample document": { "sample identifier": "81 I18", "location identifier": "I18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9034,14 +9034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", "device control aggregate document": { "device control document": [ { @@ -9054,22 +9048,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", "sample document": { "sample identifier": "81 I19", "location identifier": "I19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9077,14 +9077,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", "device control aggregate document": { "device control document": [ { @@ -9097,22 +9091,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", "sample document": { "sample identifier": "81 I20", "location identifier": "I20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9120,14 +9120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", "device control aggregate document": { "device control document": [ { @@ -9140,22 +9134,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", "sample document": { "sample identifier": "81 I21", "location identifier": "I21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9163,14 +9163,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", "device control aggregate document": { "device control document": [ { @@ -9183,22 +9177,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", "sample document": { "sample identifier": "81 I22", "location identifier": "I22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9206,14 +9206,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", "device control aggregate document": { "device control document": [ { @@ -9226,22 +9220,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", "sample document": { "sample identifier": "81 I23", "location identifier": "I23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9249,14 +9249,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", "device control aggregate document": { "device control document": [ { @@ -9269,22 +9263,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", "sample document": { "sample identifier": "81 I24", "location identifier": "I24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9292,14 +9292,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", "device control aggregate document": { "device control document": [ { @@ -9312,22 +9306,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", "sample document": { "sample identifier": "81 J1", "location identifier": "J1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9335,14 +9335,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", "device control aggregate document": { "device control document": [ { @@ -9355,22 +9349,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", "sample document": { "sample identifier": "81 J2", "location identifier": "J2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9378,14 +9378,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", "device control aggregate document": { "device control document": [ { @@ -9398,22 +9392,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", "sample document": { "sample identifier": "81 J3", "location identifier": "J3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9421,14 +9421,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", "device control aggregate document": { "device control document": [ { @@ -9441,22 +9435,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", "sample document": { "sample identifier": "81 J4", "location identifier": "J4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9464,14 +9464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", "device control aggregate document": { "device control document": [ { @@ -9484,37 +9478,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", "sample document": { "sample identifier": "81 J5", "location identifier": "J5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", "device control aggregate document": { "device control document": [ { @@ -9527,22 +9521,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", "sample document": { "sample identifier": "81 J6", "location identifier": "J6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9550,14 +9550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", "device control aggregate document": { "device control document": [ { @@ -9570,22 +9564,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", "sample document": { "sample identifier": "81 J7", "location identifier": "J7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9593,14 +9593,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", "device control aggregate document": { "device control document": [ { @@ -9613,22 +9607,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", "sample document": { "sample identifier": "81 J8", "location identifier": "J8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9636,14 +9636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", "device control aggregate document": { "device control document": [ { @@ -9656,22 +9650,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", "sample document": { "sample identifier": "81 J9", "location identifier": "J9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9679,14 +9679,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", "device control aggregate document": { "device control document": [ { @@ -9699,22 +9693,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", "sample document": { "sample identifier": "81 J10", "location identifier": "J10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9722,14 +9722,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", "device control aggregate document": { "device control document": [ { @@ -9742,22 +9736,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", "sample document": { "sample identifier": "81 J11", "location identifier": "J11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9765,14 +9765,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", "device control aggregate document": { "device control document": [ { @@ -9785,22 +9779,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", "sample document": { "sample identifier": "81 J12", "location identifier": "J12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9808,14 +9808,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", "device control aggregate document": { "device control document": [ { @@ -9828,22 +9822,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", "sample document": { "sample identifier": "81 J13", "location identifier": "J13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9851,14 +9851,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", "device control aggregate document": { "device control document": [ { @@ -9871,22 +9865,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", "sample document": { "sample identifier": "81 J14", "location identifier": "J14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9894,14 +9894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", "device control aggregate document": { "device control document": [ { @@ -9914,22 +9908,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", "sample document": { "sample identifier": "81 J15", "location identifier": "J15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9937,14 +9937,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", "device control aggregate document": { "device control document": [ { @@ -9957,22 +9951,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", "sample document": { "sample identifier": "81 J16", "location identifier": "J16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -9980,14 +9980,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", "device control aggregate document": { "device control document": [ { @@ -10000,22 +9994,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", "sample document": { "sample identifier": "81 J17", "location identifier": "J17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10023,14 +10023,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", "device control aggregate document": { "device control document": [ { @@ -10043,22 +10037,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", "sample document": { "sample identifier": "81 J18", "location identifier": "J18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10066,14 +10066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", "device control aggregate document": { "device control document": [ { @@ -10086,22 +10080,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", "sample document": { "sample identifier": "81 J19", "location identifier": "J19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10109,14 +10109,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", "device control aggregate document": { "device control document": [ { @@ -10129,22 +10123,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", "sample document": { "sample identifier": "81 J20", "location identifier": "J20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10152,14 +10152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", "device control aggregate document": { "device control document": [ { @@ -10172,22 +10166,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", "sample document": { "sample identifier": "81 J21", "location identifier": "J21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10195,14 +10195,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", "device control aggregate document": { "device control document": [ { @@ -10215,22 +10209,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", "sample document": { "sample identifier": "81 J22", "location identifier": "J22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10238,14 +10238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", "device control aggregate document": { "device control document": [ { @@ -10258,22 +10252,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", "sample document": { "sample identifier": "81 J23", "location identifier": "J23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10281,14 +10281,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", "device control aggregate document": { "device control document": [ { @@ -10301,22 +10295,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", "sample document": { "sample identifier": "81 J24", "location identifier": "J24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10324,14 +10324,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", "device control aggregate document": { "device control document": [ { @@ -10344,22 +10338,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", "sample document": { "sample identifier": "81 K1", "location identifier": "K1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10367,14 +10367,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", "device control aggregate document": { "device control document": [ { @@ -10387,22 +10381,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", "sample document": { "sample identifier": "81 K2", "location identifier": "K2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10410,14 +10410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", "device control aggregate document": { "device control document": [ { @@ -10430,22 +10424,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", "sample document": { "sample identifier": "81 K3", "location identifier": "K3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10453,14 +10453,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", "device control aggregate document": { "device control document": [ { @@ -10473,22 +10467,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", "sample document": { "sample identifier": "81 K4", "location identifier": "K4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10496,14 +10496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", "device control aggregate document": { "device control document": [ { @@ -10516,22 +10510,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", "sample document": { "sample identifier": "81 K5", "location identifier": "K5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10539,14 +10539,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", "device control aggregate document": { "device control document": [ { @@ -10559,22 +10553,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", "sample document": { "sample identifier": "81 K6", "location identifier": "K6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10582,14 +10582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", "device control aggregate document": { "device control document": [ { @@ -10602,22 +10596,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", "sample document": { "sample identifier": "81 K7", "location identifier": "K7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10625,14 +10625,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", "device control aggregate document": { "device control document": [ { @@ -10645,22 +10639,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", "sample document": { "sample identifier": "81 K8", "location identifier": "K8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10668,14 +10668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", "device control aggregate document": { "device control document": [ { @@ -10688,22 +10682,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", "sample document": { "sample identifier": "81 K9", "location identifier": "K9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10711,14 +10711,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", "device control aggregate document": { "device control document": [ { @@ -10731,22 +10725,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", "sample document": { "sample identifier": "81 K10", "location identifier": "K10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10754,14 +10754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", "device control aggregate document": { "device control document": [ { @@ -10774,22 +10768,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", "sample document": { "sample identifier": "81 K11", "location identifier": "K11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10797,14 +10797,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", "device control aggregate document": { "device control document": [ { @@ -10817,22 +10811,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", "sample document": { "sample identifier": "81 K12", "location identifier": "K12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10840,14 +10840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", "device control aggregate document": { "device control document": [ { @@ -10860,22 +10854,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", "sample document": { "sample identifier": "81 K13", "location identifier": "K13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10883,14 +10883,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", "device control aggregate document": { "device control document": [ { @@ -10903,22 +10897,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", "sample document": { "sample identifier": "81 K14", "location identifier": "K14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10926,14 +10926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", "device control aggregate document": { "device control document": [ { @@ -10946,22 +10940,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", "sample document": { "sample identifier": "81 K15", "location identifier": "K15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -10969,14 +10969,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", "device control aggregate document": { "device control document": [ { @@ -10989,22 +10983,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", "sample document": { "sample identifier": "81 K16", "location identifier": "K16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11012,14 +11012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", "device control aggregate document": { "device control document": [ { @@ -11032,22 +11026,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", "sample document": { "sample identifier": "81 K17", "location identifier": "K17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11055,14 +11055,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", "device control aggregate document": { "device control document": [ { @@ -11075,22 +11069,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", "sample document": { "sample identifier": "81 K18", "location identifier": "K18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11098,14 +11098,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", "device control aggregate document": { "device control document": [ { @@ -11118,22 +11112,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", "sample document": { "sample identifier": "81 K19", "location identifier": "K19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11141,14 +11141,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", "device control aggregate document": { "device control document": [ { @@ -11161,22 +11155,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", "sample document": { "sample identifier": "81 K20", "location identifier": "K20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11184,14 +11184,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "device control aggregate document": { "device control document": [ { @@ -11204,22 +11198,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "sample document": { "sample identifier": "81 K21", "location identifier": "K21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11227,14 +11227,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", "device control aggregate document": { "device control document": [ { @@ -11247,22 +11241,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", "sample document": { "sample identifier": "81 K22", "location identifier": "K22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11270,14 +11270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", "device control aggregate document": { "device control document": [ { @@ -11290,22 +11284,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", "sample document": { "sample identifier": "81 K23", "location identifier": "K23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11313,14 +11313,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", "device control aggregate document": { "device control document": [ { @@ -11333,22 +11327,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", "sample document": { "sample identifier": "81 K24", "location identifier": "K24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11356,14 +11356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", "device control aggregate document": { "device control document": [ { @@ -11376,22 +11370,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", "sample document": { "sample identifier": "81 L1", "location identifier": "L1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11399,14 +11399,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", "device control aggregate document": { "device control document": [ { @@ -11419,22 +11413,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", "sample document": { "sample identifier": "81 L2", "location identifier": "L2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11442,14 +11442,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", "device control aggregate document": { "device control document": [ { @@ -11462,22 +11456,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", "sample document": { "sample identifier": "81 L3", "location identifier": "L3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11485,14 +11485,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", "device control aggregate document": { "device control document": [ { @@ -11505,22 +11499,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", "sample document": { "sample identifier": "81 L4", "location identifier": "L4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11528,14 +11528,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", "device control aggregate document": { "device control document": [ { @@ -11548,22 +11542,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", "sample document": { "sample identifier": "81 L5", "location identifier": "L5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11571,14 +11571,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", "device control aggregate document": { "device control document": [ { @@ -11591,22 +11585,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", "sample document": { "sample identifier": "81 L6", "location identifier": "L6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11614,14 +11614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", "device control aggregate document": { "device control document": [ { @@ -11634,22 +11628,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", "sample document": { "sample identifier": "81 L7", "location identifier": "L7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11657,14 +11657,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", "device control aggregate document": { "device control document": [ { @@ -11677,37 +11671,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", "sample document": { "sample identifier": "81 L8", "location identifier": "L8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", "device control aggregate document": { "device control document": [ { @@ -11720,22 +11714,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", "sample document": { "sample identifier": "81 L9", "location identifier": "L9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11743,14 +11743,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", "device control aggregate document": { "device control document": [ { @@ -11763,22 +11757,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", "sample document": { "sample identifier": "81 L10", "location identifier": "L10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11786,14 +11786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", "device control aggregate document": { "device control document": [ { @@ -11806,22 +11800,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", "sample document": { "sample identifier": "81 L11", "location identifier": "L11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11829,14 +11829,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", "device control aggregate document": { "device control document": [ { @@ -11849,22 +11843,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", "sample document": { "sample identifier": "81 L12", "location identifier": "L12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11872,14 +11872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", "device control aggregate document": { "device control document": [ { @@ -11892,22 +11886,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", "sample document": { "sample identifier": "81 L13", "location identifier": "L13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11915,14 +11915,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", "device control aggregate document": { "device control document": [ { @@ -11935,22 +11929,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", "sample document": { "sample identifier": "81 L14", "location identifier": "L14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -11958,14 +11958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", "device control aggregate document": { "device control document": [ { @@ -11978,22 +11972,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", "sample document": { "sample identifier": "81 L15", "location identifier": "L15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12001,14 +12001,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", "device control aggregate document": { "device control document": [ { @@ -12021,22 +12015,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", "sample document": { "sample identifier": "81 L16", "location identifier": "L16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12044,14 +12044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", "device control aggregate document": { "device control document": [ { @@ -12064,22 +12058,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", "sample document": { "sample identifier": "81 L17", "location identifier": "L17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12087,14 +12087,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", "device control aggregate document": { "device control document": [ { @@ -12107,22 +12101,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", "sample document": { "sample identifier": "81 L18", "location identifier": "L18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12130,14 +12130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", "device control aggregate document": { "device control document": [ { @@ -12150,22 +12144,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", "sample document": { "sample identifier": "81 L19", "location identifier": "L19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12173,14 +12173,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", "device control aggregate document": { "device control document": [ { @@ -12193,22 +12187,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", "sample document": { "sample identifier": "81 L20", "location identifier": "L20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12216,14 +12216,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", "device control aggregate document": { "device control document": [ { @@ -12236,22 +12230,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", "sample document": { "sample identifier": "81 L21", "location identifier": "L21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12259,14 +12259,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", "device control aggregate document": { "device control document": [ { @@ -12279,22 +12273,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", "sample document": { "sample identifier": "81 L22", "location identifier": "L22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12302,14 +12302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", "device control aggregate document": { "device control document": [ { @@ -12322,22 +12316,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", "sample document": { "sample identifier": "81 L23", "location identifier": "L23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12345,14 +12345,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", "device control aggregate document": { "device control document": [ { @@ -12365,22 +12359,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", "sample document": { "sample identifier": "81 L24", "location identifier": "L24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12388,14 +12388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", "device control aggregate document": { "device control document": [ { @@ -12408,22 +12402,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", "sample document": { "sample identifier": "81 M1", "location identifier": "M1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12431,14 +12431,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", "device control aggregate document": { "device control document": [ { @@ -12451,22 +12445,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", "sample document": { "sample identifier": "81 M2", "location identifier": "M2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12474,14 +12474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", "device control aggregate document": { "device control document": [ { @@ -12494,22 +12488,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", "sample document": { "sample identifier": "81 M3", "location identifier": "M3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12517,14 +12517,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", "device control aggregate document": { "device control document": [ { @@ -12537,22 +12531,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", "sample document": { "sample identifier": "81 M4", "location identifier": "M4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12560,14 +12560,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", "device control aggregate document": { "device control document": [ { @@ -12580,22 +12574,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", "sample document": { "sample identifier": "81 M5", "location identifier": "M5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12603,14 +12603,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", "device control aggregate document": { "device control document": [ { @@ -12623,22 +12617,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", "sample document": { "sample identifier": "81 M6", "location identifier": "M6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12646,14 +12646,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", "device control aggregate document": { "device control document": [ { @@ -12666,22 +12660,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", "sample document": { "sample identifier": "81 M7", "location identifier": "M7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12689,14 +12689,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", "device control aggregate document": { "device control document": [ { @@ -12709,22 +12703,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", "sample document": { "sample identifier": "81 M8", "location identifier": "M8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12732,14 +12732,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", "device control aggregate document": { "device control document": [ { @@ -12752,22 +12746,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", "sample document": { "sample identifier": "81 M9", "location identifier": "M9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12775,14 +12775,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", "device control aggregate document": { "device control document": [ { @@ -12795,22 +12789,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", "sample document": { "sample identifier": "81 M10", "location identifier": "M10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12818,14 +12818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", "device control aggregate document": { "device control document": [ { @@ -12838,22 +12832,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", "sample document": { "sample identifier": "81 M11", "location identifier": "M11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12861,14 +12861,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", "device control aggregate document": { "device control document": [ { @@ -12881,22 +12875,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", "sample document": { "sample identifier": "81 M12", "location identifier": "M12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12904,14 +12904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", "device control aggregate document": { "device control document": [ { @@ -12924,22 +12918,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", "sample document": { "sample identifier": "81 M13", "location identifier": "M13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 52, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 52, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12947,14 +12947,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", "device control aggregate document": { "device control document": [ { @@ -12967,22 +12961,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", "sample document": { "sample identifier": "81 M14", "location identifier": "M14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -12990,14 +12990,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", "device control aggregate document": { "device control document": [ { @@ -13010,22 +13004,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", "sample document": { "sample identifier": "81 M15", "location identifier": "M15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13033,14 +13033,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", "device control aggregate document": { "device control document": [ { @@ -13053,22 +13047,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", "sample document": { "sample identifier": "81 M16", "location identifier": "M16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13076,14 +13076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", "device control aggregate document": { "device control document": [ { @@ -13096,22 +13090,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", "sample document": { "sample identifier": "81 M17", "location identifier": "M17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13119,14 +13119,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", "device control aggregate document": { "device control document": [ { @@ -13139,22 +13133,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", "sample document": { "sample identifier": "81 M18", "location identifier": "M18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13162,14 +13162,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", "device control aggregate document": { "device control document": [ { @@ -13182,22 +13176,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", "sample document": { "sample identifier": "81 M19", "location identifier": "M19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13205,14 +13205,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", "device control aggregate document": { "device control document": [ { @@ -13225,22 +13219,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", "sample document": { "sample identifier": "81 M20", "location identifier": "M20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13248,14 +13248,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", "device control aggregate document": { "device control document": [ { @@ -13268,22 +13262,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", "sample document": { "sample identifier": "81 M21", "location identifier": "M21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13291,14 +13291,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", "device control aggregate document": { "device control document": [ { @@ -13311,22 +13305,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", "sample document": { "sample identifier": "81 M22", "location identifier": "M22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13334,14 +13334,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", "device control aggregate document": { "device control document": [ { @@ -13354,22 +13348,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", "sample document": { "sample identifier": "81 M23", "location identifier": "M23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13377,14 +13377,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", "device control aggregate document": { "device control document": [ { @@ -13397,22 +13391,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", "sample document": { "sample identifier": "81 M24", "location identifier": "M24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13420,14 +13420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", "device control aggregate document": { "device control document": [ { @@ -13440,22 +13434,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", "sample document": { "sample identifier": "81 N1", "location identifier": "N1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 20, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 20, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13463,14 +13463,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", "device control aggregate document": { "device control document": [ { @@ -13483,22 +13477,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", "sample document": { "sample identifier": "81 N2", "location identifier": "N2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13506,14 +13506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", "device control aggregate document": { "device control document": [ { @@ -13526,22 +13520,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", "sample document": { "sample identifier": "81 N3", "location identifier": "N3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13549,14 +13549,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", "device control aggregate document": { "device control document": [ { @@ -13569,22 +13563,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", "sample document": { "sample identifier": "81 N4", "location identifier": "N4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13592,14 +13592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", "device control aggregate document": { "device control document": [ { @@ -13612,22 +13606,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", "sample document": { "sample identifier": "81 N5", "location identifier": "N5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13635,14 +13635,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", "device control aggregate document": { "device control document": [ { @@ -13655,22 +13649,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", "sample document": { "sample identifier": "81 N6", "location identifier": "N6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13678,14 +13678,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", "device control aggregate document": { "device control document": [ { @@ -13698,22 +13692,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", "sample document": { "sample identifier": "81 N7", "location identifier": "N7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13721,14 +13721,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", "device control aggregate document": { "device control document": [ { @@ -13741,22 +13735,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", "sample document": { "sample identifier": "81 N8", "location identifier": "N8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13764,14 +13764,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", "device control aggregate document": { "device control document": [ { @@ -13784,22 +13778,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", "sample document": { "sample identifier": "81 N9", "location identifier": "N9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13807,14 +13807,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", "device control aggregate document": { "device control document": [ { @@ -13827,22 +13821,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", "sample document": { "sample identifier": "81 N10", "location identifier": "N10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13850,14 +13850,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", "device control aggregate document": { "device control document": [ { @@ -13870,37 +13864,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", "sample document": { "sample identifier": "81 N11", "location identifier": "N11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", "device control aggregate document": { "device control document": [ { @@ -13913,22 +13907,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", "sample document": { "sample identifier": "81 N12", "location identifier": "N12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13936,14 +13936,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", "device control aggregate document": { "device control document": [ { @@ -13956,22 +13950,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", "sample document": { "sample identifier": "81 N13", "location identifier": "N13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -13979,14 +13979,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", "device control aggregate document": { "device control document": [ { @@ -13999,22 +13993,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", "sample document": { "sample identifier": "81 N14", "location identifier": "N14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14022,14 +14022,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", "device control aggregate document": { "device control document": [ { @@ -14042,22 +14036,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", "sample document": { "sample identifier": "81 N15", "location identifier": "N15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14065,14 +14065,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", "device control aggregate document": { "device control document": [ { @@ -14085,22 +14079,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", "sample document": { "sample identifier": "81 N16", "location identifier": "N16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14108,14 +14108,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", "device control aggregate document": { "device control document": [ { @@ -14128,22 +14122,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", "sample document": { "sample identifier": "81 N17", "location identifier": "N17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14151,14 +14151,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", "device control aggregate document": { "device control document": [ { @@ -14171,22 +14165,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", "sample document": { "sample identifier": "81 N18", "location identifier": "N18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14194,14 +14194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", "device control aggregate document": { "device control document": [ { @@ -14214,22 +14208,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", "sample document": { "sample identifier": "81 N19", "location identifier": "N19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14237,14 +14237,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", "device control aggregate document": { "device control document": [ { @@ -14257,22 +14251,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", "sample document": { "sample identifier": "81 N20", "location identifier": "N20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 56, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 56, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14280,14 +14280,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", "device control aggregate document": { "device control document": [ { @@ -14300,22 +14294,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", "sample document": { "sample identifier": "81 N21", "location identifier": "N21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14323,14 +14323,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", "device control aggregate document": { "device control document": [ { @@ -14343,22 +14337,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", "sample document": { "sample identifier": "81 N22", "location identifier": "N22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14366,14 +14366,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", "device control aggregate document": { "device control document": [ { @@ -14386,22 +14380,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", "sample document": { "sample identifier": "81 N23", "location identifier": "N23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14409,14 +14409,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", "device control aggregate document": { "device control document": [ { @@ -14429,22 +14423,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", "sample document": { "sample identifier": "81 N24", "location identifier": "N24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14452,14 +14452,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", "device control aggregate document": { "device control document": [ { @@ -14472,22 +14466,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", "sample document": { "sample identifier": "81 O1", "location identifier": "O1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14495,14 +14495,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", "device control aggregate document": { "device control document": [ { @@ -14515,22 +14509,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", "sample document": { "sample identifier": "81 O2", "location identifier": "O2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14538,14 +14538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", "device control aggregate document": { "device control document": [ { @@ -14558,22 +14552,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", "sample document": { "sample identifier": "81 O3", "location identifier": "O3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14581,14 +14581,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", "device control aggregate document": { "device control document": [ { @@ -14601,22 +14595,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", "sample document": { "sample identifier": "81 O4", "location identifier": "O4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14624,14 +14624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", "device control aggregate document": { "device control document": [ { @@ -14644,22 +14638,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", "sample document": { "sample identifier": "81 O5", "location identifier": "O5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14667,14 +14667,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", "device control aggregate document": { "device control document": [ { @@ -14687,22 +14681,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", "sample document": { "sample identifier": "81 O6", "location identifier": "O6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14710,14 +14710,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", "device control aggregate document": { "device control document": [ { @@ -14730,22 +14724,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", "sample document": { "sample identifier": "81 O7", "location identifier": "O7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14753,14 +14753,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", "device control aggregate document": { "device control document": [ { @@ -14773,22 +14767,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", "sample document": { "sample identifier": "81 O8", "location identifier": "O8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14796,14 +14796,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", "device control aggregate document": { "device control document": [ { @@ -14816,22 +14810,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", "sample document": { "sample identifier": "81 O9", "location identifier": "O9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14839,14 +14839,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", "device control aggregate document": { "device control document": [ { @@ -14859,22 +14853,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", "sample document": { "sample identifier": "81 O10", "location identifier": "O10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14882,14 +14882,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", "device control aggregate document": { "device control document": [ { @@ -14902,22 +14896,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", "sample document": { "sample identifier": "81 O11", "location identifier": "O11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14925,14 +14925,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", "device control aggregate document": { "device control document": [ { @@ -14945,22 +14939,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", "sample document": { "sample identifier": "81 O12", "location identifier": "O12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -14968,14 +14968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", "device control aggregate document": { "device control document": [ { @@ -14988,22 +14982,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", "sample document": { "sample identifier": "81 O13", "location identifier": "O13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15011,14 +15011,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", "device control aggregate document": { "device control document": [ { @@ -15031,22 +15025,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", "sample document": { "sample identifier": "81 O14", "location identifier": "O14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15054,14 +15054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", "device control aggregate document": { "device control document": [ { @@ -15074,22 +15068,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", "sample document": { "sample identifier": "81 O15", "location identifier": "O15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15097,14 +15097,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", "device control aggregate document": { "device control document": [ { @@ -15117,22 +15111,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", "sample document": { "sample identifier": "81 O16", "location identifier": "O16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15140,14 +15140,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", "device control aggregate document": { "device control document": [ { @@ -15160,22 +15154,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", "sample document": { "sample identifier": "81 O17", "location identifier": "O17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 24, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 24, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15183,14 +15183,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", "device control aggregate document": { "device control document": [ { @@ -15203,22 +15197,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", "sample document": { "sample identifier": "81 O18", "location identifier": "O18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15226,14 +15226,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", "device control aggregate document": { "device control document": [ { @@ -15246,22 +15240,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", "sample document": { "sample identifier": "81 O19", "location identifier": "O19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15269,14 +15269,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", "device control aggregate document": { "device control document": [ { @@ -15289,22 +15283,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", "sample document": { "sample identifier": "81 O20", "location identifier": "O20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15312,14 +15312,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", "device control aggregate document": { "device control document": [ { @@ -15332,22 +15326,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", "sample document": { "sample identifier": "81 O21", "location identifier": "O21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15355,14 +15355,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", "device control aggregate document": { "device control document": [ { @@ -15375,22 +15369,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", "sample document": { "sample identifier": "81 O22", "location identifier": "O22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15398,14 +15398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", "device control aggregate document": { "device control document": [ { @@ -15418,22 +15412,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", "sample document": { "sample identifier": "81 O23", "location identifier": "O23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15441,14 +15441,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", "device control aggregate document": { "device control document": [ { @@ -15461,22 +15455,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", "sample document": { "sample identifier": "81 O24", "location identifier": "O24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15484,14 +15484,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", "device control aggregate document": { "device control document": [ { @@ -15504,22 +15498,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", "sample document": { "sample identifier": "81 P1", "location identifier": "P1", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 28, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 28, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15527,14 +15527,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", "device control aggregate document": { "device control document": [ { @@ -15547,22 +15541,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", "sample document": { "sample identifier": "81 P2", "location identifier": "P2", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15570,14 +15570,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", "device control aggregate document": { "device control document": [ { @@ -15590,22 +15584,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", "sample document": { "sample identifier": "81 P3", "location identifier": "P3", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15613,14 +15613,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", "device control aggregate document": { "device control document": [ { @@ -15633,22 +15627,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", "sample document": { "sample identifier": "81 P4", "location identifier": "P4", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15656,14 +15656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", "device control aggregate document": { "device control document": [ { @@ -15676,22 +15670,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", "sample document": { "sample identifier": "81 P5", "location identifier": "P5", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15699,14 +15699,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", "device control aggregate document": { "device control document": [ { @@ -15719,22 +15713,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", "sample document": { "sample identifier": "81 P6", "location identifier": "P6", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15742,14 +15742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", "device control aggregate document": { "device control document": [ { @@ -15762,22 +15756,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", "sample document": { "sample identifier": "81 P7", "location identifier": "P7", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15785,14 +15785,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", "device control aggregate document": { "device control document": [ { @@ -15805,22 +15799,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", "sample document": { "sample identifier": "81 P8", "location identifier": "P8", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15828,14 +15828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", "device control aggregate document": { "device control document": [ { @@ -15848,22 +15842,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", "sample document": { "sample identifier": "81 P9", "location identifier": "P9", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15871,14 +15871,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", "device control aggregate document": { "device control document": [ { @@ -15891,22 +15885,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", "sample document": { "sample identifier": "81 P10", "location identifier": "P10", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15914,14 +15914,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", "device control aggregate document": { "device control document": [ { @@ -15934,22 +15928,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", "sample document": { "sample identifier": "81 P11", "location identifier": "P11", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -15957,14 +15957,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", "device control aggregate document": { "device control document": [ { @@ -15977,22 +15971,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", "sample document": { "sample identifier": "81 P12", "location identifier": "P12", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16000,14 +16000,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", "device control aggregate document": { "device control document": [ { @@ -16020,22 +16014,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", "sample document": { "sample identifier": "81 P13", "location identifier": "P13", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16043,14 +16043,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", "device control aggregate document": { "device control document": [ { @@ -16063,37 +16057,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", "sample document": { "sample identifier": "81 P14", "location identifier": "P14", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", "device control aggregate document": { "device control document": [ { @@ -16106,22 +16100,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", "sample document": { "sample identifier": "81 P15", "location identifier": "P15", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16129,14 +16129,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", "device control aggregate document": { "device control document": [ { @@ -16149,22 +16143,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", "sample document": { "sample identifier": "81 P16", "location identifier": "P16", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 44, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 44, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16172,14 +16172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", "device control aggregate document": { "device control document": [ { @@ -16192,22 +16186,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", "sample document": { "sample identifier": "81 P17", "location identifier": "P17", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16215,14 +16215,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", "device control aggregate document": { "device control document": [ { @@ -16235,22 +16229,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", "sample document": { "sample identifier": "81 P18", "location identifier": "P18", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16258,14 +16258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", "device control aggregate document": { "device control document": [ { @@ -16278,22 +16272,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", "sample document": { "sample identifier": "81 P19", "location identifier": "P19", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 40, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 40, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16301,14 +16301,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", "device control aggregate document": { "device control document": [ { @@ -16321,22 +16315,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", "sample document": { "sample identifier": "81 P20", "location identifier": "P20", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 48, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 48, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16344,14 +16344,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", "device control aggregate document": { "device control document": [ { @@ -16364,22 +16358,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", "sample document": { "sample identifier": "81 P21", "location identifier": "P21", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16387,14 +16387,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", "device control aggregate document": { "device control document": [ { @@ -16407,22 +16401,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", "sample document": { "sample identifier": "81 P22", "location identifier": "P22", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 36, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 36, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16430,14 +16430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", "device control aggregate document": { "device control document": [ { @@ -16450,22 +16444,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", "sample document": { "sample identifier": "81 P23", "location identifier": "P23", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 32, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 32, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16473,14 +16473,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", "device control aggregate document": { "device control document": [ { @@ -16493,22 +16487,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", "sample document": { "sample identifier": "81 P24", "location identifier": "P24", "sample role type": "unknown sample role", "well plate identifier": "81" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.37, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16516,14 +16516,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1152", "device control aggregate document": { "device control document": [ { @@ -16536,22 +16530,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1152", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16559,14 +16559,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1153", "device control aggregate document": { "device control document": [ { @@ -16579,22 +16573,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1153", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16602,14 +16602,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1154", "device control aggregate document": { "device control document": [ { @@ -16622,22 +16616,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1154", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16645,14 +16645,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1155", "device control aggregate document": { "device control document": [ { @@ -16665,22 +16659,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1155", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16688,14 +16688,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1156", "device control aggregate document": { "device control document": [ { @@ -16708,22 +16702,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1156", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16731,14 +16731,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1157", "device control aggregate document": { "device control document": [ { @@ -16751,22 +16745,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1157", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16774,14 +16774,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1158", "device control aggregate document": { "device control document": [ { @@ -16794,22 +16788,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1158", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16817,14 +16817,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1159", "device control aggregate document": { "device control document": [ { @@ -16837,22 +16831,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1159", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16860,14 +16860,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1160", "device control aggregate document": { "device control document": [ { @@ -16880,22 +16874,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1160", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16903,14 +16903,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1161", "device control aggregate document": { "device control document": [ { @@ -16923,22 +16917,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1161", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16946,14 +16946,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1162", "device control aggregate document": { "device control document": [ { @@ -16966,22 +16960,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1162", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -16989,14 +16989,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1163", "device control aggregate document": { "device control document": [ { @@ -17009,22 +17003,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1163", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17032,14 +17032,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1164", "device control aggregate document": { "device control document": [ { @@ -17052,22 +17046,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1164", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17075,14 +17075,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1165", "device control aggregate document": { "device control document": [ { @@ -17095,22 +17089,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1165", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17118,14 +17118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1166", "device control aggregate document": { "device control document": [ { @@ -17138,22 +17132,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1166", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17161,14 +17161,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1167", "device control aggregate document": { "device control document": [ { @@ -17181,22 +17175,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1167", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17204,14 +17204,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1168", "device control aggregate document": { "device control document": [ { @@ -17224,22 +17218,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1168", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17247,14 +17247,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1169", "device control aggregate document": { "device control document": [ { @@ -17267,22 +17261,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1169", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17290,14 +17290,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1170", "device control aggregate document": { "device control document": [ { @@ -17310,22 +17304,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1170", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17333,14 +17333,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1171", "device control aggregate document": { "device control document": [ { @@ -17353,22 +17347,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1171", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17376,14 +17376,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1172", "device control aggregate document": { "device control document": [ { @@ -17396,22 +17390,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1172", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17419,14 +17419,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1173", "device control aggregate document": { "device control document": [ { @@ -17439,22 +17433,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1173", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17462,14 +17462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1174", "device control aggregate document": { "device control document": [ { @@ -17482,22 +17476,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1174", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17505,14 +17505,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1175", "device control aggregate document": { "device control document": [ { @@ -17525,22 +17519,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1175", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17548,14 +17548,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1176", "device control aggregate document": { "device control document": [ { @@ -17568,22 +17562,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1176", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17591,14 +17591,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1177", "device control aggregate document": { "device control document": [ { @@ -17611,22 +17605,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1177", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17634,14 +17634,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1178", "device control aggregate document": { "device control document": [ { @@ -17654,22 +17648,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1178", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17677,14 +17677,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1179", "device control aggregate document": { "device control document": [ { @@ -17697,22 +17691,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1179", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17720,14 +17720,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1180", "device control aggregate document": { "device control document": [ { @@ -17740,22 +17734,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1180", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17763,14 +17763,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1181", "device control aggregate document": { "device control document": [ { @@ -17783,22 +17777,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1181", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17806,14 +17806,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1182", "device control aggregate document": { "device control document": [ { @@ -17826,22 +17820,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1182", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17849,14 +17849,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1183", "device control aggregate document": { "device control document": [ { @@ -17869,22 +17863,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1183", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17892,14 +17892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1184", "device control aggregate document": { "device control document": [ { @@ -17912,22 +17906,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1184", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17935,14 +17935,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1185", "device control aggregate document": { "device control document": [ { @@ -17955,22 +17949,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1185", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -17978,14 +17978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1186", "device control aggregate document": { "device control document": [ { @@ -17998,22 +17992,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1186", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18021,14 +18021,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1187", "device control aggregate document": { "device control document": [ { @@ -18041,22 +18035,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1187", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18064,14 +18064,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1188", "device control aggregate document": { "device control document": [ { @@ -18084,22 +18078,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1188", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18107,14 +18107,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1189", "device control aggregate document": { "device control document": [ { @@ -18127,22 +18121,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1189", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18150,14 +18150,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1190", "device control aggregate document": { "device control document": [ { @@ -18170,22 +18164,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1190", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18193,14 +18193,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1191", "device control aggregate document": { "device control document": [ { @@ -18213,22 +18207,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1191", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18236,14 +18236,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1192", "device control aggregate document": { "device control document": [ { @@ -18256,37 +18250,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1192", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1193", "device control aggregate document": { "device control document": [ { @@ -18299,22 +18293,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1193", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18322,14 +18322,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1194", "device control aggregate document": { "device control document": [ { @@ -18342,22 +18336,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1194", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18365,14 +18365,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1195", "device control aggregate document": { "device control document": [ { @@ -18385,22 +18379,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1195", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18408,14 +18408,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1196", "device control aggregate document": { "device control document": [ { @@ -18428,22 +18422,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1196", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18451,14 +18451,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1197", "device control aggregate document": { "device control document": [ { @@ -18471,22 +18465,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1197", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18494,14 +18494,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "device control aggregate document": { "device control document": [ { @@ -18514,22 +18508,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18537,14 +18537,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1199", "device control aggregate document": { "device control document": [ { @@ -18557,22 +18551,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1199", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18580,14 +18580,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1200", "device control aggregate document": { "device control document": [ { @@ -18600,22 +18594,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1200", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18623,14 +18623,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1201", "device control aggregate document": { "device control document": [ { @@ -18643,22 +18637,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1201", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18666,14 +18666,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1202", "device control aggregate document": { "device control document": [ { @@ -18686,22 +18680,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1202", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18709,14 +18709,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1203", "device control aggregate document": { "device control document": [ { @@ -18729,22 +18723,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1203", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18752,14 +18752,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1204", "device control aggregate document": { "device control document": [ { @@ -18772,22 +18766,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1204", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18795,14 +18795,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1205", "device control aggregate document": { "device control document": [ { @@ -18815,22 +18809,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1205", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18838,14 +18838,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1206", "device control aggregate document": { "device control document": [ { @@ -18858,22 +18852,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1206", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18881,14 +18881,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1207", "device control aggregate document": { "device control document": [ { @@ -18901,22 +18895,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1207", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18924,14 +18924,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1208", "device control aggregate document": { "device control document": [ { @@ -18944,22 +18938,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1208", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -18967,14 +18967,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1209", "device control aggregate document": { "device control document": [ { @@ -18987,22 +18981,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1209", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19010,14 +19010,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1210", "device control aggregate document": { "device control document": [ { @@ -19030,22 +19024,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1210", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19053,14 +19053,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1211", "device control aggregate document": { "device control document": [ { @@ -19073,22 +19067,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1211", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19096,14 +19096,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1212", "device control aggregate document": { "device control document": [ { @@ -19116,22 +19110,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1212", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19139,14 +19139,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1213", "device control aggregate document": { "device control document": [ { @@ -19159,22 +19153,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1213", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19182,14 +19182,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1214", "device control aggregate document": { "device control document": [ { @@ -19202,22 +19196,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1214", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19225,14 +19225,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1215", "device control aggregate document": { "device control document": [ { @@ -19245,22 +19239,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1215", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19268,14 +19268,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1216", "device control aggregate document": { "device control document": [ { @@ -19288,22 +19282,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1216", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19311,14 +19311,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1217", "device control aggregate document": { "device control document": [ { @@ -19331,22 +19325,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1217", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19354,14 +19354,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1218", "device control aggregate document": { "device control document": [ { @@ -19374,22 +19368,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1218", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19397,14 +19397,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1219", "device control aggregate document": { "device control document": [ { @@ -19417,22 +19411,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1219", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19440,14 +19440,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1220", "device control aggregate document": { "device control document": [ { @@ -19460,22 +19454,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1220", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19483,14 +19483,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1221", "device control aggregate document": { "device control document": [ { @@ -19503,22 +19497,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1221", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19526,14 +19526,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1222", "device control aggregate document": { "device control document": [ { @@ -19546,22 +19540,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1222", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19569,14 +19569,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1223", "device control aggregate document": { "device control document": [ { @@ -19589,22 +19583,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1223", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19612,14 +19612,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1224", "device control aggregate document": { "device control document": [ { @@ -19632,22 +19626,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1224", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19655,14 +19655,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1225", "device control aggregate document": { "device control document": [ { @@ -19675,22 +19669,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1225", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19698,14 +19698,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1226", "device control aggregate document": { "device control document": [ { @@ -19718,22 +19712,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1226", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19741,14 +19741,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1227", "device control aggregate document": { "device control document": [ { @@ -19761,22 +19755,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1227", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19784,14 +19784,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1228", "device control aggregate document": { "device control document": [ { @@ -19804,22 +19798,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1228", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19827,14 +19827,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1229", "device control aggregate document": { "device control document": [ { @@ -19847,22 +19841,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1229", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19870,14 +19870,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1230", "device control aggregate document": { "device control document": [ { @@ -19890,22 +19884,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1230", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19913,14 +19913,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1231", "device control aggregate document": { "device control document": [ { @@ -19933,22 +19927,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1231", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19956,14 +19956,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1232", "device control aggregate document": { "device control document": [ { @@ -19976,22 +19970,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1232", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -19999,14 +19999,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1233", "device control aggregate document": { "device control document": [ { @@ -20019,22 +20013,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1233", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20042,14 +20042,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1234", "device control aggregate document": { "device control document": [ { @@ -20062,22 +20056,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1234", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20085,14 +20085,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1235", "device control aggregate document": { "device control document": [ { @@ -20105,22 +20099,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1235", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20128,14 +20128,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1236", "device control aggregate document": { "device control document": [ { @@ -20148,22 +20142,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1236", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20171,14 +20171,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1237", "device control aggregate document": { "device control document": [ { @@ -20191,22 +20185,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1237", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20214,14 +20214,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1238", "device control aggregate document": { "device control document": [ { @@ -20234,22 +20228,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1238", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20257,14 +20257,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1239", "device control aggregate document": { "device control document": [ { @@ -20277,22 +20271,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1239", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20300,14 +20300,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1240", "device control aggregate document": { "device control document": [ { @@ -20320,22 +20314,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1240", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20343,14 +20343,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1241", "device control aggregate document": { "device control document": [ { @@ -20363,22 +20357,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1241", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20386,14 +20386,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1242", "device control aggregate document": { "device control document": [ { @@ -20406,22 +20400,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1242", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20429,14 +20429,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1243", "device control aggregate document": { "device control document": [ { @@ -20449,37 +20443,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1243", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1244", "device control aggregate document": { "device control document": [ { @@ -20492,22 +20486,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1244", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20515,14 +20515,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1245", "device control aggregate document": { "device control document": [ { @@ -20535,22 +20529,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1245", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20558,14 +20558,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1246", "device control aggregate document": { "device control document": [ { @@ -20578,22 +20572,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1246", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20601,14 +20601,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1247", "device control aggregate document": { "device control document": [ { @@ -20621,22 +20615,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1247", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20644,14 +20644,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1248", "device control aggregate document": { "device control document": [ { @@ -20664,22 +20658,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1248", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20687,14 +20687,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1249", "device control aggregate document": { "device control document": [ { @@ -20707,22 +20701,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1249", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20730,14 +20730,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1250", "device control aggregate document": { "device control document": [ { @@ -20750,22 +20744,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1250", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20773,14 +20773,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1251", "device control aggregate document": { "device control document": [ { @@ -20793,22 +20787,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1251", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20816,14 +20816,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1252", "device control aggregate document": { "device control document": [ { @@ -20836,22 +20830,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1252", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20859,14 +20859,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1253", "device control aggregate document": { "device control document": [ { @@ -20879,22 +20873,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1253", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 16, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 16, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20902,14 +20902,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1254", "device control aggregate document": { "device control document": [ { @@ -20922,22 +20916,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1254", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20945,14 +20945,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1255", "device control aggregate document": { "device control document": [ { @@ -20965,22 +20959,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1255", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -20988,14 +20988,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1256", "device control aggregate document": { "device control document": [ { @@ -21008,22 +21002,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1256", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21031,14 +21031,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1257", "device control aggregate document": { "device control document": [ { @@ -21051,22 +21045,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1257", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21074,14 +21074,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1258", "device control aggregate document": { "device control document": [ { @@ -21094,22 +21088,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1258", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21117,14 +21117,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1259", "device control aggregate document": { "device control document": [ { @@ -21137,22 +21131,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1259", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21160,14 +21160,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1260", "device control aggregate document": { "device control document": [ { @@ -21180,22 +21174,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1260", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21203,14 +21203,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1261", "device control aggregate document": { "device control document": [ { @@ -21223,22 +21217,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1261", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21246,14 +21246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1262", "device control aggregate document": { "device control document": [ { @@ -21266,22 +21260,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1262", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21289,14 +21289,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1263", "device control aggregate document": { "device control document": [ { @@ -21309,22 +21303,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1263", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21332,14 +21332,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1264", "device control aggregate document": { "device control document": [ { @@ -21352,22 +21346,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1264", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21375,14 +21375,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1265", "device control aggregate document": { "device control document": [ { @@ -21395,22 +21389,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1265", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21418,14 +21418,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1266", "device control aggregate document": { "device control document": [ { @@ -21438,22 +21432,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1266", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21461,14 +21461,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1267", "device control aggregate document": { "device control document": [ { @@ -21481,22 +21475,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1267", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21504,14 +21504,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1268", "device control aggregate document": { "device control document": [ { @@ -21524,22 +21518,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1268", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21547,14 +21547,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1269", "device control aggregate document": { "device control document": [ { @@ -21567,22 +21561,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1269", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21590,14 +21590,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1270", "device control aggregate document": { "device control document": [ { @@ -21610,22 +21604,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1270", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21633,14 +21633,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1271", "device control aggregate document": { "device control document": [ { @@ -21653,22 +21647,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1271", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21676,14 +21676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1272", "device control aggregate document": { "device control document": [ { @@ -21696,22 +21690,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1272", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21719,14 +21719,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1273", "device control aggregate document": { "device control document": [ { @@ -21739,22 +21733,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1273", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21762,14 +21762,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1274", "device control aggregate document": { "device control document": [ { @@ -21782,22 +21776,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1274", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21805,14 +21805,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1275", "device control aggregate document": { "device control document": [ { @@ -21825,22 +21819,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1275", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21848,14 +21848,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1276", "device control aggregate document": { "device control document": [ { @@ -21868,22 +21862,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1276", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21891,14 +21891,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1277", "device control aggregate document": { "device control document": [ { @@ -21911,22 +21905,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1277", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21934,14 +21934,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1278", "device control aggregate document": { "device control document": [ { @@ -21954,22 +21948,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1278", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -21977,14 +21977,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1279", "device control aggregate document": { "device control document": [ { @@ -21997,22 +21991,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1279", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22020,14 +22020,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1280", "device control aggregate document": { "device control document": [ { @@ -22040,22 +22034,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1280", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22063,14 +22063,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1281", "device control aggregate document": { "device control document": [ { @@ -22083,22 +22077,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1281", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22106,14 +22106,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1282", "device control aggregate document": { "device control document": [ { @@ -22126,22 +22120,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1282", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22149,14 +22149,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1283", "device control aggregate document": { "device control document": [ { @@ -22169,22 +22163,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1283", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22192,14 +22192,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1284", "device control aggregate document": { "device control document": [ { @@ -22212,22 +22206,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1284", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22235,14 +22235,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1285", "device control aggregate document": { "device control document": [ { @@ -22255,22 +22249,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1285", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22278,14 +22278,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1286", "device control aggregate document": { "device control document": [ { @@ -22298,22 +22292,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1286", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22321,14 +22321,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1287", "device control aggregate document": { "device control document": [ { @@ -22341,22 +22335,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1287", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22364,14 +22364,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1288", "device control aggregate document": { "device control document": [ { @@ -22384,22 +22378,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1288", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22407,14 +22407,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1289", "device control aggregate document": { "device control document": [ { @@ -22427,22 +22421,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1289", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22450,14 +22450,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1290", "device control aggregate document": { "device control document": [ { @@ -22470,22 +22464,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1290", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22493,14 +22493,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1291", "device control aggregate document": { "device control document": [ { @@ -22513,22 +22507,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1291", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22536,14 +22536,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1292", "device control aggregate document": { "device control document": [ { @@ -22556,22 +22550,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1292", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22579,14 +22579,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1293", "device control aggregate document": { "device control document": [ { @@ -22599,22 +22593,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1293", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22622,14 +22622,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1294", "device control aggregate document": { "device control document": [ { @@ -22642,37 +22636,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1294", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1295", "device control aggregate document": { "device control document": [ { @@ -22685,22 +22679,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1295", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22708,14 +22708,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1296", "device control aggregate document": { "device control document": [ { @@ -22728,22 +22722,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1296", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22751,14 +22751,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1297", "device control aggregate document": { "device control document": [ { @@ -22771,22 +22765,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1297", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22794,14 +22794,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1298", "device control aggregate document": { "device control document": [ { @@ -22814,22 +22808,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1298", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22837,14 +22837,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1299", "device control aggregate document": { "device control document": [ { @@ -22857,22 +22851,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1299", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22880,14 +22880,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1300", "device control aggregate document": { "device control document": [ { @@ -22900,22 +22894,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1300", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22923,14 +22923,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1301", "device control aggregate document": { "device control document": [ { @@ -22943,22 +22937,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1301", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -22966,14 +22966,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1302", "device control aggregate document": { "device control document": [ { @@ -22986,22 +22980,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1302", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23009,14 +23009,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1303", "device control aggregate document": { "device control document": [ { @@ -23029,22 +23023,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1303", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23052,14 +23052,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1304", "device control aggregate document": { "device control document": [ { @@ -23072,22 +23066,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1304", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23095,14 +23095,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1305", "device control aggregate document": { "device control document": [ { @@ -23115,22 +23109,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1305", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23138,14 +23138,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1306", "device control aggregate document": { "device control document": [ { @@ -23158,22 +23152,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1306", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23181,14 +23181,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1307", "device control aggregate document": { "device control document": [ { @@ -23201,22 +23195,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1307", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23224,14 +23224,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1308", "device control aggregate document": { "device control document": [ { @@ -23244,22 +23238,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1308", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23267,14 +23267,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1309", "device control aggregate document": { "device control document": [ { @@ -23287,22 +23281,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1309", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23310,14 +23310,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1310", "device control aggregate document": { "device control document": [ { @@ -23330,22 +23324,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1310", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23353,14 +23353,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1311", "device control aggregate document": { "device control document": [ { @@ -23373,22 +23367,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1311", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23396,14 +23396,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1312", "device control aggregate document": { "device control document": [ { @@ -23416,22 +23410,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1312", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23439,14 +23439,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1313", "device control aggregate document": { "device control document": [ { @@ -23459,22 +23453,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1313", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23482,14 +23482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1314", "device control aggregate document": { "device control document": [ { @@ -23502,22 +23496,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1314", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23525,14 +23525,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1315", "device control aggregate document": { "device control document": [ { @@ -23545,22 +23539,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1315", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23568,14 +23568,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1316", "device control aggregate document": { "device control document": [ { @@ -23588,22 +23582,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1316", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23611,14 +23611,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1317", "device control aggregate document": { "device control document": [ { @@ -23631,22 +23625,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1317", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23654,14 +23654,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1318", "device control aggregate document": { "device control document": [ { @@ -23674,22 +23668,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1318", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23697,14 +23697,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1319", "device control aggregate document": { "device control document": [ { @@ -23717,22 +23711,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1319", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23740,14 +23740,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1320", "device control aggregate document": { "device control document": [ { @@ -23760,22 +23754,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1320", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23783,14 +23783,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1321", "device control aggregate document": { "device control document": [ { @@ -23803,22 +23797,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1321", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23826,14 +23826,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1322", "device control aggregate document": { "device control document": [ { @@ -23846,22 +23840,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1322", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23869,14 +23869,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1323", "device control aggregate document": { "device control document": [ { @@ -23889,22 +23883,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1323", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23912,14 +23912,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1324", "device control aggregate document": { "device control document": [ { @@ -23932,22 +23926,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1324", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23955,14 +23955,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1325", "device control aggregate document": { "device control document": [ { @@ -23975,22 +23969,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1325", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -23998,14 +23998,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1326", "device control aggregate document": { "device control document": [ { @@ -24018,22 +24012,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1326", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24041,14 +24041,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1327", "device control aggregate document": { "device control document": [ { @@ -24061,22 +24055,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1327", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24084,14 +24084,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1328", "device control aggregate document": { "device control document": [ { @@ -24104,22 +24098,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1328", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24127,14 +24127,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1329", "device control aggregate document": { "device control document": [ { @@ -24147,22 +24141,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1329", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24170,14 +24170,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1330", "device control aggregate document": { "device control document": [ { @@ -24190,22 +24184,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1330", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24213,14 +24213,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1331", "device control aggregate document": { "device control document": [ { @@ -24233,22 +24227,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1331", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24256,14 +24256,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1332", "device control aggregate document": { "device control document": [ { @@ -24276,22 +24270,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1332", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24299,14 +24299,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1333", "device control aggregate document": { "device control document": [ { @@ -24319,22 +24313,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1333", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24342,14 +24342,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1334", "device control aggregate document": { "device control document": [ { @@ -24362,22 +24356,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1334", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24385,14 +24385,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1335", "device control aggregate document": { "device control document": [ { @@ -24405,22 +24399,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1335", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24428,14 +24428,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1336", "device control aggregate document": { "device control document": [ { @@ -24448,22 +24442,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1336", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24471,14 +24471,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1337", "device control aggregate document": { "device control document": [ { @@ -24491,22 +24485,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1337", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24514,14 +24514,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1338", "device control aggregate document": { "device control document": [ { @@ -24534,22 +24528,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1338", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24557,14 +24557,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1339", "device control aggregate document": { "device control document": [ { @@ -24577,22 +24571,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1339", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24600,14 +24600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1340", "device control aggregate document": { "device control document": [ { @@ -24620,22 +24614,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1340", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24643,14 +24643,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1341", "device control aggregate document": { "device control document": [ { @@ -24663,22 +24657,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1341", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24686,14 +24686,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1342", "device control aggregate document": { "device control document": [ { @@ -24706,22 +24700,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1342", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24729,14 +24729,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1343", "device control aggregate document": { "device control document": [ { @@ -24749,22 +24743,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1343", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24772,14 +24772,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1344", "device control aggregate document": { "device control document": [ { @@ -24792,22 +24786,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1344", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24815,14 +24815,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1345", "device control aggregate document": { "device control document": [ { @@ -24835,37 +24829,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1345", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1346", "device control aggregate document": { "device control document": [ { @@ -24878,22 +24872,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1346", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24901,14 +24901,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1347", "device control aggregate document": { "device control document": [ { @@ -24921,22 +24915,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1347", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24944,14 +24944,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1348", "device control aggregate document": { "device control document": [ { @@ -24964,22 +24958,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1348", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -24987,14 +24987,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1349", "device control aggregate document": { "device control document": [ { @@ -25007,22 +25001,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1349", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25030,14 +25030,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1350", "device control aggregate document": { "device control document": [ { @@ -25050,22 +25044,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1350", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25073,14 +25073,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1351", "device control aggregate document": { "device control document": [ { @@ -25093,22 +25087,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1351", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25116,14 +25116,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1352", "device control aggregate document": { "device control document": [ { @@ -25136,22 +25130,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1352", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25159,14 +25159,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1353", "device control aggregate document": { "device control document": [ { @@ -25179,22 +25173,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1353", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25202,14 +25202,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1354", "device control aggregate document": { "device control document": [ { @@ -25222,22 +25216,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1354", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25245,14 +25245,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1355", "device control aggregate document": { "device control document": [ { @@ -25265,22 +25259,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1355", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25288,14 +25288,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1356", "device control aggregate document": { "device control document": [ { @@ -25308,22 +25302,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1356", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25331,14 +25331,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1357", "device control aggregate document": { "device control document": [ { @@ -25351,22 +25345,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1357", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25374,14 +25374,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1358", "device control aggregate document": { "device control document": [ { @@ -25394,22 +25388,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1358", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25417,14 +25417,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1359", "device control aggregate document": { "device control document": [ { @@ -25437,22 +25431,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1359", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25460,14 +25460,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1360", "device control aggregate document": { "device control document": [ { @@ -25480,22 +25474,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1360", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25503,14 +25503,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1361", "device control aggregate document": { "device control document": [ { @@ -25523,22 +25517,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1361", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25546,14 +25546,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1362", "device control aggregate document": { "device control document": [ { @@ -25566,22 +25560,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1362", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25589,14 +25589,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1363", "device control aggregate document": { "device control document": [ { @@ -25609,22 +25603,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1363", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25632,14 +25632,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1364", "device control aggregate document": { "device control document": [ { @@ -25652,22 +25646,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1364", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25675,14 +25675,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1365", "device control aggregate document": { "device control document": [ { @@ -25695,22 +25689,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1365", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25718,14 +25718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1366", "device control aggregate document": { "device control document": [ { @@ -25738,22 +25732,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1366", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25761,14 +25761,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1367", "device control aggregate document": { "device control document": [ { @@ -25781,22 +25775,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1367", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25804,14 +25804,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1368", "device control aggregate document": { "device control document": [ { @@ -25824,22 +25818,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1368", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25847,14 +25847,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1369", "device control aggregate document": { "device control document": [ { @@ -25867,22 +25861,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1369", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25890,14 +25890,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1370", "device control aggregate document": { "device control document": [ { @@ -25910,22 +25904,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1370", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25933,14 +25933,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1371", "device control aggregate document": { "device control document": [ { @@ -25953,22 +25947,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1371", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -25976,14 +25976,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1372", "device control aggregate document": { "device control document": [ { @@ -25996,22 +25990,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1372", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26019,14 +26019,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1373", "device control aggregate document": { "device control document": [ { @@ -26039,22 +26033,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1373", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26062,14 +26062,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1374", "device control aggregate document": { "device control document": [ { @@ -26082,22 +26076,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1374", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26105,14 +26105,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1375", "device control aggregate document": { "device control document": [ { @@ -26125,22 +26119,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1375", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26148,14 +26148,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1376", "device control aggregate document": { "device control document": [ { @@ -26168,22 +26162,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1376", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26191,14 +26191,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1377", "device control aggregate document": { "device control document": [ { @@ -26211,22 +26205,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1377", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26234,14 +26234,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1378", "device control aggregate document": { "device control document": [ { @@ -26254,22 +26248,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1378", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26277,14 +26277,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1379", "device control aggregate document": { "device control document": [ { @@ -26297,22 +26291,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1379", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26320,14 +26320,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1380", "device control aggregate document": { "device control document": [ { @@ -26340,22 +26334,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1380", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26363,14 +26363,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1381", "device control aggregate document": { "device control document": [ { @@ -26383,22 +26377,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1381", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26406,14 +26406,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1382", "device control aggregate document": { "device control document": [ { @@ -26426,22 +26420,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1382", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26449,14 +26449,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1383", "device control aggregate document": { "device control document": [ { @@ -26469,22 +26463,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1383", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26492,14 +26492,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1384", "device control aggregate document": { "device control document": [ { @@ -26512,22 +26506,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1384", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26535,14 +26535,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1385", "device control aggregate document": { "device control document": [ { @@ -26555,22 +26549,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1385", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26578,14 +26578,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1386", "device control aggregate document": { "device control document": [ { @@ -26598,22 +26592,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1386", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26621,14 +26621,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1387", "device control aggregate document": { "device control document": [ { @@ -26641,22 +26635,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1387", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26664,14 +26664,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1388", "device control aggregate document": { "device control document": [ { @@ -26684,22 +26678,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1388", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26707,14 +26707,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1389", "device control aggregate document": { "device control document": [ { @@ -26727,22 +26721,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1389", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26750,14 +26750,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1390", "device control aggregate document": { "device control document": [ { @@ -26770,22 +26764,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1390", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26793,14 +26793,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1391", "device control aggregate document": { "device control document": [ { @@ -26813,22 +26807,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1391", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26836,14 +26836,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1392", "device control aggregate document": { "device control document": [ { @@ -26856,22 +26850,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1392", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26879,14 +26879,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1393", "device control aggregate document": { "device control document": [ { @@ -26899,22 +26893,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1393", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26922,14 +26922,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1394", "device control aggregate document": { "device control document": [ { @@ -26942,22 +26936,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1394", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -26965,14 +26965,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1395", "device control aggregate document": { "device control document": [ { @@ -26985,22 +26979,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1395", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27008,14 +27008,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1396", "device control aggregate document": { "device control document": [ { @@ -27028,37 +27022,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1396", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1397", "device control aggregate document": { "device control document": [ { @@ -27071,22 +27065,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1397", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27094,14 +27094,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1398", "device control aggregate document": { "device control document": [ { @@ -27114,22 +27108,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1398", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27137,14 +27137,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1399", "device control aggregate document": { "device control document": [ { @@ -27157,22 +27151,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1399", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27180,14 +27180,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1400", "device control aggregate document": { "device control document": [ { @@ -27200,22 +27194,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1400", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27223,14 +27223,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1401", "device control aggregate document": { "device control document": [ { @@ -27243,22 +27237,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1401", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27266,14 +27266,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1402", "device control aggregate document": { "device control document": [ { @@ -27286,22 +27280,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1402", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27309,14 +27309,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1403", "device control aggregate document": { "device control document": [ { @@ -27329,22 +27323,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1403", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27352,14 +27352,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1404", "device control aggregate document": { "device control document": [ { @@ -27372,22 +27366,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1404", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27395,14 +27395,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1405", "device control aggregate document": { "device control document": [ { @@ -27415,22 +27409,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1405", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27438,14 +27438,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1406", "device control aggregate document": { "device control document": [ { @@ -27458,22 +27452,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1406", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27481,14 +27481,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1407", "device control aggregate document": { "device control document": [ { @@ -27501,22 +27495,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1407", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27524,14 +27524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1408", "device control aggregate document": { "device control document": [ { @@ -27544,22 +27538,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1408", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27567,14 +27567,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1409", "device control aggregate document": { "device control document": [ { @@ -27587,22 +27581,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1409", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27610,14 +27610,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1410", "device control aggregate document": { "device control document": [ { @@ -27630,22 +27624,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1410", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27653,14 +27653,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1411", "device control aggregate document": { "device control document": [ { @@ -27673,22 +27667,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1411", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27696,14 +27696,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1412", "device control aggregate document": { "device control document": [ { @@ -27716,22 +27710,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1412", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27739,14 +27739,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1413", "device control aggregate document": { "device control document": [ { @@ -27759,22 +27753,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1413", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27782,14 +27782,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1414", "device control aggregate document": { "device control document": [ { @@ -27802,22 +27796,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1414", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27825,14 +27825,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1415", "device control aggregate document": { "device control document": [ { @@ -27845,22 +27839,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1415", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27868,14 +27868,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1416", "device control aggregate document": { "device control document": [ { @@ -27888,22 +27882,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1416", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27911,14 +27911,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1417", "device control aggregate document": { "device control document": [ { @@ -27931,22 +27925,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1417", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27954,14 +27954,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1418", "device control aggregate document": { "device control document": [ { @@ -27974,22 +27968,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1418", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -27997,14 +27997,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1419", "device control aggregate document": { "device control document": [ { @@ -28017,22 +28011,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1419", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28040,14 +28040,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1420", "device control aggregate document": { "device control document": [ { @@ -28060,22 +28054,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1420", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28083,14 +28083,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1421", "device control aggregate document": { "device control document": [ { @@ -28103,22 +28097,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1421", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28126,14 +28126,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1422", "device control aggregate document": { "device control document": [ { @@ -28146,22 +28140,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1422", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28169,14 +28169,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1423", "device control aggregate document": { "device control document": [ { @@ -28189,22 +28183,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1423", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28212,14 +28212,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1424", "device control aggregate document": { "device control document": [ { @@ -28232,22 +28226,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1424", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28255,14 +28255,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1425", "device control aggregate document": { "device control document": [ { @@ -28275,22 +28269,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1425", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28298,14 +28298,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1426", "device control aggregate document": { "device control document": [ { @@ -28318,22 +28312,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1426", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28341,14 +28341,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1427", "device control aggregate document": { "device control document": [ { @@ -28361,22 +28355,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1427", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28384,14 +28384,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1428", "device control aggregate document": { "device control document": [ { @@ -28404,22 +28398,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1428", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28427,14 +28427,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1429", "device control aggregate document": { "device control document": [ { @@ -28447,22 +28441,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1429", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28470,14 +28470,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1430", "device control aggregate document": { "device control document": [ { @@ -28490,22 +28484,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1430", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28513,14 +28513,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1431", "device control aggregate document": { "device control document": [ { @@ -28533,22 +28527,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1431", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28556,14 +28556,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1432", "device control aggregate document": { "device control document": [ { @@ -28576,22 +28570,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1432", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28599,14 +28599,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1433", "device control aggregate document": { "device control document": [ { @@ -28619,22 +28613,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1433", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28642,14 +28642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1434", "device control aggregate document": { "device control document": [ { @@ -28662,22 +28656,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1434", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28685,14 +28685,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1435", "device control aggregate document": { "device control document": [ { @@ -28705,22 +28699,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1435", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28728,14 +28728,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1436", "device control aggregate document": { "device control document": [ { @@ -28748,22 +28742,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1436", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28771,14 +28771,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1437", "device control aggregate document": { "device control document": [ { @@ -28791,22 +28785,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1437", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28814,14 +28814,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1438", "device control aggregate document": { "device control document": [ { @@ -28834,22 +28828,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1438", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28857,14 +28857,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1439", "device control aggregate document": { "device control document": [ { @@ -28877,22 +28871,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1439", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28900,14 +28900,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1440", "device control aggregate document": { "device control document": [ { @@ -28920,22 +28914,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1440", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28943,14 +28943,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1441", "device control aggregate document": { "device control document": [ { @@ -28963,22 +28957,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1441", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -28986,14 +28986,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1442", "device control aggregate document": { "device control document": [ { @@ -29006,22 +29000,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1442", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29029,14 +29029,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1443", "device control aggregate document": { "device control document": [ { @@ -29049,22 +29043,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1443", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29072,14 +29072,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1444", "device control aggregate document": { "device control document": [ { @@ -29092,22 +29086,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1444", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29115,14 +29115,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1445", "device control aggregate document": { "device control document": [ { @@ -29135,22 +29129,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1445", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29158,14 +29158,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1446", "device control aggregate document": { "device control document": [ { @@ -29178,22 +29172,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1446", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29201,14 +29201,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1447", "device control aggregate document": { "device control document": [ { @@ -29221,37 +29215,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1447", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1448", "device control aggregate document": { "device control document": [ { @@ -29264,22 +29258,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1448", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29287,14 +29287,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1449", "device control aggregate document": { "device control document": [ { @@ -29307,22 +29301,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1449", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29330,14 +29330,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1450", "device control aggregate document": { "device control document": [ { @@ -29350,22 +29344,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1450", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29373,14 +29373,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1451", "device control aggregate document": { "device control document": [ { @@ -29393,22 +29387,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1451", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29416,14 +29416,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1452", "device control aggregate document": { "device control document": [ { @@ -29436,22 +29430,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1452", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29459,14 +29459,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1453", "device control aggregate document": { "device control document": [ { @@ -29479,22 +29473,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1453", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29502,14 +29502,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1454", "device control aggregate document": { "device control document": [ { @@ -29522,22 +29516,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1454", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29545,14 +29545,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1455", "device control aggregate document": { "device control document": [ { @@ -29565,22 +29559,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1455", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29588,14 +29588,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1456", "device control aggregate document": { "device control document": [ { @@ -29608,22 +29602,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1456", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29631,14 +29631,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1457", "device control aggregate document": { "device control document": [ { @@ -29651,22 +29645,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1457", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29674,14 +29674,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1458", "device control aggregate document": { "device control document": [ { @@ -29694,22 +29688,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1458", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29717,14 +29717,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1459", "device control aggregate document": { "device control document": [ { @@ -29737,22 +29731,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1459", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29760,14 +29760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1460", "device control aggregate document": { "device control document": [ { @@ -29780,22 +29774,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1460", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29803,14 +29803,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1461", "device control aggregate document": { "device control document": [ { @@ -29823,22 +29817,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1461", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29846,14 +29846,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1462", "device control aggregate document": { "device control document": [ { @@ -29866,22 +29860,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1462", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29889,14 +29889,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1463", "device control aggregate document": { "device control document": [ { @@ -29909,22 +29903,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1463", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29932,14 +29932,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1464", "device control aggregate document": { "device control document": [ { @@ -29952,22 +29946,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1464", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -29975,14 +29975,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1465", "device control aggregate document": { "device control document": [ { @@ -29995,22 +29989,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1465", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30018,14 +30018,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1466", "device control aggregate document": { "device control document": [ { @@ -30038,22 +30032,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1466", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30061,14 +30061,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1467", "device control aggregate document": { "device control document": [ { @@ -30081,22 +30075,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1467", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30104,14 +30104,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1468", "device control aggregate document": { "device control document": [ { @@ -30124,22 +30118,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1468", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30147,14 +30147,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1469", "device control aggregate document": { "device control document": [ { @@ -30167,22 +30161,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1469", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30190,14 +30190,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1470", "device control aggregate document": { "device control document": [ { @@ -30210,22 +30204,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1470", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30233,14 +30233,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1471", "device control aggregate document": { "device control document": [ { @@ -30253,22 +30247,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1471", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30276,14 +30276,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1472", "device control aggregate document": { "device control document": [ { @@ -30296,22 +30290,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1472", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30319,14 +30319,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1473", "device control aggregate document": { "device control document": [ { @@ -30339,22 +30333,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1473", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30362,14 +30362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1474", "device control aggregate document": { "device control document": [ { @@ -30382,22 +30376,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1474", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30405,14 +30405,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1475", "device control aggregate document": { "device control document": [ { @@ -30425,22 +30419,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1475", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30448,14 +30448,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1476", "device control aggregate document": { "device control document": [ { @@ -30468,22 +30462,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1476", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30491,14 +30491,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1477", "device control aggregate document": { "device control document": [ { @@ -30511,22 +30505,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1477", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30534,14 +30534,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1478", "device control aggregate document": { "device control document": [ { @@ -30554,22 +30548,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1478", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30577,14 +30577,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1479", "device control aggregate document": { "device control document": [ { @@ -30597,22 +30591,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1479", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30620,14 +30620,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1480", "device control aggregate document": { "device control document": [ { @@ -30640,22 +30634,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1480", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30663,14 +30663,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1481", "device control aggregate document": { "device control document": [ { @@ -30683,22 +30677,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1481", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30706,14 +30706,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1482", "device control aggregate document": { "device control document": [ { @@ -30726,22 +30720,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1482", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30749,14 +30749,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1483", "device control aggregate document": { "device control document": [ { @@ -30769,22 +30763,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1483", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30792,14 +30792,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1484", "device control aggregate document": { "device control document": [ { @@ -30812,22 +30806,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1484", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30835,14 +30835,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1485", "device control aggregate document": { "device control document": [ { @@ -30855,22 +30849,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1485", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30878,14 +30878,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1486", "device control aggregate document": { "device control document": [ { @@ -30898,22 +30892,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1486", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30921,14 +30921,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1487", "device control aggregate document": { "device control document": [ { @@ -30941,22 +30935,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1487", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -30964,14 +30964,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1488", "device control aggregate document": { "device control document": [ { @@ -30984,22 +30978,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1488", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31007,14 +31007,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1489", "device control aggregate document": { "device control document": [ { @@ -31027,22 +31021,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1489", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31050,14 +31050,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1490", "device control aggregate document": { "device control document": [ { @@ -31070,22 +31064,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1490", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31093,14 +31093,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1491", "device control aggregate document": { "device control document": [ { @@ -31113,22 +31107,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1491", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31136,14 +31136,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1492", "device control aggregate document": { "device control document": [ { @@ -31156,22 +31150,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1492", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31179,14 +31179,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1493", "device control aggregate document": { "device control document": [ { @@ -31199,22 +31193,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1493", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31222,14 +31222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1494", "device control aggregate document": { "device control document": [ { @@ -31242,22 +31236,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1494", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31265,14 +31265,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1495", "device control aggregate document": { "device control document": [ { @@ -31285,22 +31279,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1495", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31308,14 +31308,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1496", "device control aggregate document": { "device control document": [ { @@ -31328,22 +31322,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1496", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31351,14 +31351,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1497", "device control aggregate document": { "device control document": [ { @@ -31371,22 +31365,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1497", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31394,14 +31394,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1498", "device control aggregate document": { "device control document": [ { @@ -31414,37 +31408,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1498", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], - "analytical method identifier": "100175", - "experimental data identifier": "2898", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T10:45:59+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100175", + "experimental data identifier": "2898", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1499", "device control aggregate document": { "device control document": [ { @@ -31457,22 +31451,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1499", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31480,14 +31480,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1500", "device control aggregate document": { "device control document": [ { @@ -31500,22 +31494,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1500", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 0, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 0, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31523,14 +31523,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1501", "device control aggregate document": { "device control document": [ { @@ -31543,22 +31537,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1501", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31566,14 +31566,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1502", "device control aggregate document": { "device control document": [ { @@ -31586,22 +31580,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1502", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31609,14 +31609,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1503", "device control aggregate document": { "device control document": [ { @@ -31629,22 +31623,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1503", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31652,14 +31652,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1504", "device control aggregate document": { "device control document": [ { @@ -31672,22 +31666,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1504", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31695,14 +31695,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1505", "device control aggregate document": { "device control document": [ { @@ -31715,22 +31709,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1505", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31738,14 +31738,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1506", "device control aggregate document": { "device control document": [ { @@ -31758,22 +31752,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1506", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31781,14 +31781,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1507", "device control aggregate document": { "device control document": [ { @@ -31801,22 +31795,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1507", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31824,14 +31824,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1508", "device control aggregate document": { "device control document": [ { @@ -31844,22 +31838,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1508", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31867,14 +31867,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1509", "device control aggregate document": { "device control document": [ { @@ -31887,22 +31881,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1509", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31910,14 +31910,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1510", "device control aggregate document": { "device control document": [ { @@ -31930,22 +31924,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1510", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31953,14 +31953,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1511", "device control aggregate document": { "device control document": [ { @@ -31973,22 +31967,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1511", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -31996,14 +31996,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1512", "device control aggregate document": { "device control document": [ { @@ -32016,22 +32010,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1512", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32039,14 +32039,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1513", "device control aggregate document": { "device control document": [ { @@ -32059,22 +32053,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1513", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32082,14 +32082,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1514", "device control aggregate document": { "device control document": [ { @@ -32102,22 +32096,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1514", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32125,14 +32125,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1515", "device control aggregate document": { "device control document": [ { @@ -32145,22 +32139,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1515", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 12, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 12, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32168,14 +32168,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1516", "device control aggregate document": { "device control document": [ { @@ -32188,22 +32182,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1516", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32211,14 +32211,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1517", "device control aggregate document": { "device control document": [ { @@ -32231,22 +32225,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1517", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32254,14 +32254,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1518", "device control aggregate document": { "device control document": [ { @@ -32274,22 +32268,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1518", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32297,14 +32297,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1519", "device control aggregate document": { "device control document": [ { @@ -32317,22 +32311,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1519", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32340,14 +32340,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1520", "device control aggregate document": { "device control document": [ { @@ -32360,22 +32354,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1520", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32383,14 +32383,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1521", "device control aggregate document": { "device control document": [ { @@ -32403,22 +32397,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1521", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32426,14 +32426,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1522", "device control aggregate document": { "device control document": [ { @@ -32446,22 +32440,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1522", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32469,14 +32469,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1523", "device control aggregate document": { "device control document": [ { @@ -32489,22 +32483,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1523", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32512,14 +32512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1524", "device control aggregate document": { "device control document": [ { @@ -32532,22 +32526,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1524", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32555,14 +32555,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1525", "device control aggregate document": { "device control document": [ { @@ -32575,22 +32569,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1525", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32598,14 +32598,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1526", "device control aggregate document": { "device control document": [ { @@ -32618,22 +32612,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1526", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32641,14 +32641,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1527", "device control aggregate document": { "device control document": [ { @@ -32661,22 +32655,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1527", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32684,14 +32684,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1528", "device control aggregate document": { "device control document": [ { @@ -32704,22 +32698,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1528", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32727,14 +32727,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1529", "device control aggregate document": { "device control document": [ { @@ -32747,22 +32741,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1529", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32770,14 +32770,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1530", "device control aggregate document": { "device control document": [ { @@ -32790,22 +32784,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1530", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32813,14 +32813,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1531", "device control aggregate document": { "device control document": [ { @@ -32833,22 +32827,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1531", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32856,14 +32856,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1532", "device control aggregate document": { "device control document": [ { @@ -32876,22 +32870,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1532", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32899,14 +32899,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1533", "device control aggregate document": { "device control document": [ { @@ -32919,22 +32913,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1533", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32942,14 +32942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1534", "device control aggregate document": { "device control document": [ { @@ -32962,22 +32956,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1534", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 4, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 4, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" @@ -32985,14 +32985,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T10:45:59+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1535", "device control aggregate document": { "device control document": [ { @@ -33005,43 +32999,34 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1535", "sample document": { "sample identifier": "8/22/2023 10:46:25 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 10:46:25 AM" }, - "fluorescence": { - "value": 8, - "unit": "RFU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "fluorescence": { + "value": 8, + "unit": "RFU" } } ], + "measurement time": "2023-08-22T10:45:59+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100175", "experimental data identifier": "2898", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision#Alpha_680nm", - "model number": "EnVision", - "equipment serial number": "1051017" - }, - "data system document": { - "file name": "PE_Envision_fluorescence_example04.csv", - "ASM file identifier": "N/A", - "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.14.3049.1193", - "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -33050,6 +33035,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33057,9 +33044,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33067,6 +33052,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33074,9 +33061,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33084,6 +33069,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33091,9 +33078,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33101,6 +33086,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33108,9 +33095,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33118,6 +33103,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33125,9 +33112,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33135,6 +33120,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33142,9 +33129,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33152,6 +33137,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33159,9 +33146,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33169,6 +33154,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33176,9 +33163,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33186,6 +33171,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33193,9 +33180,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33203,6 +33188,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33210,9 +33197,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33220,6 +33205,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33227,9 +33214,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33237,6 +33222,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33244,9 +33231,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33254,6 +33239,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33261,9 +33248,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33271,6 +33256,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33278,9 +33265,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33288,6 +33273,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33295,9 +33282,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33305,6 +33290,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33312,9 +33299,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33322,6 +33307,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33329,9 +33316,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33339,6 +33324,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33346,9 +33333,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33356,6 +33341,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33363,9 +33350,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33373,6 +33358,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33380,9 +33367,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33390,6 +33375,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33397,9 +33384,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33407,6 +33392,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33414,9 +33401,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33424,6 +33409,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33431,9 +33418,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33441,6 +33426,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33448,9 +33435,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33458,6 +33443,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33465,9 +33452,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33475,6 +33460,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33482,9 +33469,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33492,6 +33477,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33499,9 +33486,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33509,6 +33494,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33516,9 +33503,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33526,6 +33511,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33533,9 +33520,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33543,6 +33528,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33550,9 +33537,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33560,6 +33545,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33567,9 +33554,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33577,6 +33562,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33584,9 +33571,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33594,6 +33579,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33601,9 +33588,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33611,6 +33596,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33618,9 +33605,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33628,6 +33613,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33635,9 +33622,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33645,6 +33630,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33652,9 +33639,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33662,6 +33647,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33669,9 +33656,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33679,6 +33664,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33686,9 +33673,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33696,6 +33681,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33703,9 +33690,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33713,6 +33698,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33720,9 +33707,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33730,6 +33715,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33737,9 +33724,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33747,6 +33732,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33754,9 +33741,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33764,6 +33749,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33771,9 +33758,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33781,6 +33766,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33788,9 +33775,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33798,6 +33783,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33805,9 +33792,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33815,6 +33800,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33822,9 +33809,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33832,6 +33817,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33839,9 +33826,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33849,6 +33834,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33856,9 +33843,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33866,6 +33851,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33873,9 +33860,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33883,6 +33868,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33890,9 +33877,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33900,6 +33885,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33907,9 +33894,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33917,6 +33902,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33924,9 +33911,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33934,6 +33919,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33941,9 +33928,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33951,6 +33936,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33958,9 +33945,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33968,6 +33953,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33975,9 +33962,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33985,6 +33970,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33992,9 +33979,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34002,6 +33987,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34009,9 +33996,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34019,6 +34004,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34026,9 +34013,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34036,6 +34021,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34043,9 +34030,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34053,6 +34038,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34060,9 +34047,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34070,6 +34055,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34077,9 +34064,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34087,6 +34072,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34094,9 +34081,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34104,6 +34089,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34111,9 +34098,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34121,6 +34106,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34128,9 +34115,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34138,6 +34123,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34145,9 +34132,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34155,6 +34140,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34162,9 +34149,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34172,6 +34157,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34179,9 +34166,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34189,6 +34174,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34196,9 +34183,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34206,6 +34191,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34213,9 +34200,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34223,6 +34208,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34230,9 +34217,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34240,6 +34225,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34247,9 +34234,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34257,6 +34242,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34264,9 +34251,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34274,6 +34259,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34281,9 +34268,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34291,6 +34276,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34298,9 +34285,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34308,6 +34293,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34315,9 +34302,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34325,6 +34310,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34332,9 +34319,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34342,6 +34327,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34349,9 +34336,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34359,6 +34344,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34366,9 +34353,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34376,6 +34361,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34383,9 +34370,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34393,6 +34378,8 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34400,9 +34387,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34410,6 +34395,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34417,9 +34404,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34427,6 +34412,8 @@ "value": 64.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34434,9 +34421,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34444,6 +34429,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34451,9 +34438,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34461,6 +34446,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34468,9 +34455,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34478,6 +34463,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34485,9 +34472,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34495,6 +34480,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34502,9 +34489,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34512,6 +34497,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34519,9 +34506,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34529,6 +34514,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34536,9 +34523,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34546,6 +34531,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34553,9 +34540,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34563,6 +34548,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34570,9 +34557,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34580,16 +34565,16 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "data source feature": "Fluorescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34597,6 +34582,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34604,9 +34591,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34614,6 +34599,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34621,9 +34608,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34631,6 +34616,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34638,9 +34625,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34648,6 +34633,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34655,9 +34642,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34665,6 +34650,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34672,9 +34659,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34682,6 +34667,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34689,9 +34676,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34699,6 +34684,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34706,9 +34693,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34716,6 +34701,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34723,9 +34710,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34733,6 +34718,8 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34740,9 +34727,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34750,6 +34735,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34757,9 +34744,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34767,6 +34752,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34774,9 +34761,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34784,6 +34769,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34791,9 +34778,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34801,6 +34786,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34808,9 +34795,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34818,6 +34803,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34825,9 +34812,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34835,6 +34820,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34842,9 +34829,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34852,6 +34837,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34859,9 +34846,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34869,6 +34854,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34876,9 +34863,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34886,6 +34871,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34893,9 +34880,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34903,6 +34888,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34910,9 +34897,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34920,6 +34905,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34927,9 +34914,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34937,6 +34922,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34944,9 +34931,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34954,6 +34939,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34961,9 +34948,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34971,6 +34956,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34978,9 +34965,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34988,6 +34973,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34995,9 +34982,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35005,6 +34990,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35012,9 +34999,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35022,6 +35007,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35029,9 +35016,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35039,6 +35024,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35046,9 +35033,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35056,6 +35041,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35063,9 +35050,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35073,6 +35058,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35080,9 +35067,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35090,6 +35075,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35097,9 +35084,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35107,6 +35092,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35114,9 +35101,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35124,6 +35109,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35131,9 +35118,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35141,6 +35126,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35148,9 +35135,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35158,6 +35143,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35165,9 +35152,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35175,6 +35160,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35182,9 +35169,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35192,6 +35177,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35199,9 +35186,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35209,6 +35194,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35216,9 +35203,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35226,6 +35211,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35233,9 +35220,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35243,6 +35228,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35250,9 +35237,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35260,6 +35245,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35267,9 +35254,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35277,6 +35262,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35284,9 +35271,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35294,6 +35279,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35301,9 +35288,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35311,6 +35296,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35318,9 +35305,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35328,6 +35313,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35335,9 +35322,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35345,6 +35330,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35352,9 +35339,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35362,6 +35347,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35369,9 +35356,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35379,6 +35364,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35386,9 +35373,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35396,6 +35381,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35403,9 +35390,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35413,6 +35398,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35420,9 +35407,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35430,6 +35415,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35437,9 +35424,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35447,6 +35432,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35454,9 +35441,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35464,6 +35449,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35471,9 +35458,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35481,6 +35466,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35488,9 +35475,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35498,6 +35483,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35505,9 +35492,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35515,6 +35500,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35522,9 +35509,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35532,6 +35517,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35539,9 +35526,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35549,6 +35534,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35556,9 +35543,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35566,6 +35551,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35573,9 +35560,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35583,6 +35568,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35590,9 +35577,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35600,6 +35585,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35607,9 +35594,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35617,6 +35602,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35624,9 +35611,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35634,6 +35619,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35641,9 +35628,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35651,6 +35636,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35658,9 +35645,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35668,6 +35653,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35675,9 +35662,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35685,6 +35670,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35692,9 +35679,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35702,6 +35687,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35709,9 +35696,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35719,6 +35704,8 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35726,9 +35713,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35736,6 +35721,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35743,9 +35730,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35753,6 +35738,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35760,9 +35747,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35770,6 +35755,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35777,9 +35764,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35787,6 +35772,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35794,9 +35781,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35804,6 +35789,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35811,9 +35798,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35821,6 +35806,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35828,9 +35815,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35838,6 +35823,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35845,9 +35832,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35855,6 +35840,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35862,9 +35849,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35872,6 +35857,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35879,9 +35866,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35889,6 +35874,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35896,9 +35883,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35906,6 +35891,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35913,9 +35900,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35923,6 +35908,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35930,9 +35917,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35940,6 +35925,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35947,9 +35934,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35957,6 +35942,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35964,9 +35951,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35974,6 +35959,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35981,9 +35968,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35991,6 +35976,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35998,9 +35985,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36008,6 +35993,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36015,9 +36002,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36025,6 +36010,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36032,9 +36019,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36042,6 +36027,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36049,9 +36036,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36059,6 +36044,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36066,9 +36053,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36076,6 +36061,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36083,9 +36070,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36093,6 +36078,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36100,9 +36087,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36110,6 +36095,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36117,9 +36104,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36127,6 +36112,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36134,9 +36121,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36144,6 +36129,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36151,9 +36138,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36161,6 +36146,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36168,9 +36155,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36178,6 +36163,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36185,9 +36172,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36195,6 +36180,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36202,9 +36189,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36212,6 +36197,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36219,9 +36206,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36229,6 +36214,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36236,9 +36223,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36246,6 +36231,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36253,9 +36240,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36263,6 +36248,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36270,9 +36257,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36280,6 +36265,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36287,9 +36274,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36297,6 +36282,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36304,9 +36291,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36314,6 +36299,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36321,9 +36308,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36331,6 +36316,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36338,9 +36325,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36348,6 +36333,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36355,9 +36342,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36365,6 +36350,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36372,9 +36359,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36382,6 +36367,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36389,9 +36376,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36399,6 +36384,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36406,9 +36393,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36416,6 +36401,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36423,9 +36410,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36433,6 +36418,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36440,9 +36427,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36450,6 +36435,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36457,9 +36444,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36467,6 +36452,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36474,9 +36461,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36484,6 +36469,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36491,9 +36478,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36501,6 +36486,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36508,9 +36495,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36518,6 +36503,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36525,9 +36512,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36535,6 +36520,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36542,9 +36529,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36552,6 +36537,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36559,9 +36546,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36569,6 +36554,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36576,9 +36563,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36586,6 +36571,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36593,9 +36580,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36603,6 +36588,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36610,9 +36597,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36620,6 +36605,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36627,9 +36614,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36637,6 +36622,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36644,9 +36631,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36654,6 +36639,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36661,9 +36648,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36671,6 +36656,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36678,9 +36665,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36688,6 +36673,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36695,9 +36682,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36705,6 +36690,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36712,9 +36699,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36722,6 +36707,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36729,9 +36716,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36739,6 +36724,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36746,9 +36733,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36756,6 +36741,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36763,9 +36750,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36773,6 +36758,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36780,9 +36767,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36790,6 +36775,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36797,9 +36784,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36807,6 +36792,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36814,9 +36801,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36824,6 +36809,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36831,9 +36818,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36841,6 +36826,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36848,9 +36835,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36858,6 +36843,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36865,9 +36852,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36875,6 +36860,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36882,9 +36869,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36892,6 +36877,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36899,9 +36886,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36909,6 +36894,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36916,9 +36903,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36926,6 +36911,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36933,9 +36920,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36943,6 +36928,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36950,9 +36937,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36960,6 +36945,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36967,9 +36954,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36977,6 +36962,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36984,9 +36971,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36994,6 +36979,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37001,9 +36988,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37011,6 +36996,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37018,9 +37005,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37028,6 +37013,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37035,9 +37022,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37045,6 +37030,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37052,9 +37039,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37062,6 +37047,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37069,9 +37056,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37079,6 +37064,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37086,9 +37073,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37096,6 +37081,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37103,9 +37090,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37113,6 +37098,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37120,9 +37107,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37130,6 +37115,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37137,9 +37124,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37147,6 +37132,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37154,9 +37141,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37164,6 +37149,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37171,9 +37158,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37181,6 +37166,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37188,9 +37175,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37198,6 +37183,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37205,9 +37192,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37215,6 +37200,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37222,9 +37209,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37232,6 +37217,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37239,9 +37226,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37249,6 +37234,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37256,9 +37243,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37266,6 +37251,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37273,9 +37260,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37283,6 +37268,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37290,9 +37277,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37300,6 +37285,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37307,9 +37294,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37317,6 +37302,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37324,9 +37311,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37334,6 +37319,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37341,9 +37328,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37351,6 +37336,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37358,9 +37345,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37368,6 +37353,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37375,9 +37362,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37385,6 +37370,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37392,9 +37379,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37402,6 +37387,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37409,9 +37396,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37419,6 +37404,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37426,9 +37413,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37436,6 +37421,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37443,9 +37430,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37453,6 +37438,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37460,9 +37447,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37470,16 +37455,16 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "data source feature": "Fluorescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37487,6 +37472,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37494,9 +37481,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37504,6 +37489,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37511,9 +37498,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37521,6 +37506,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37528,9 +37515,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37538,6 +37523,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37545,9 +37532,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37555,6 +37540,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37562,9 +37549,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37572,6 +37557,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37579,9 +37566,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37589,6 +37574,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37596,9 +37583,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37606,6 +37591,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37613,9 +37600,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37623,6 +37608,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37630,9 +37617,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37640,6 +37625,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37647,9 +37634,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37657,6 +37642,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37664,9 +37651,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37674,6 +37659,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37681,9 +37668,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37691,6 +37676,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37698,9 +37685,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37708,6 +37693,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37715,9 +37702,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37725,6 +37710,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37732,9 +37719,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37742,6 +37727,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37749,9 +37736,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37759,6 +37744,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37766,9 +37753,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37776,6 +37761,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37783,9 +37770,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37793,6 +37778,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37800,9 +37787,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37810,6 +37795,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37817,9 +37804,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37827,6 +37812,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37834,9 +37821,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37844,6 +37829,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37851,9 +37838,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37861,6 +37846,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37868,9 +37855,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37878,6 +37863,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37885,9 +37872,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37895,6 +37880,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37902,9 +37889,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37912,6 +37897,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37919,9 +37906,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37929,6 +37914,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37936,9 +37923,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37946,6 +37931,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37953,9 +37940,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37963,6 +37948,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37970,9 +37957,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37980,6 +37965,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37987,9 +37974,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37997,6 +37982,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38004,9 +37991,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38014,6 +37999,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38021,9 +38008,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38031,6 +38016,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38038,9 +38025,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38048,6 +38033,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38055,9 +38042,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38065,6 +38050,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38072,9 +38059,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38082,6 +38067,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38089,9 +38076,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38099,6 +38084,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38106,9 +38093,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38116,6 +38101,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38123,9 +38110,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38133,6 +38118,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38140,9 +38127,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38150,6 +38135,8 @@ "value": 52.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38157,9 +38144,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38167,6 +38152,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38174,9 +38161,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38184,6 +38169,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38191,9 +38178,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38201,6 +38186,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38208,9 +38195,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38218,6 +38203,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38225,9 +38212,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38235,6 +38220,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38242,9 +38229,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38252,6 +38237,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38259,9 +38246,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38269,6 +38254,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38276,9 +38263,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38286,6 +38271,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38293,9 +38280,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38303,6 +38288,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38310,9 +38297,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38320,6 +38305,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38327,9 +38314,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38337,6 +38322,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38344,9 +38331,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38354,6 +38339,8 @@ "value": 20.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38361,9 +38348,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38371,6 +38356,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38378,9 +38365,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38388,6 +38373,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38395,9 +38382,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38405,6 +38390,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38412,9 +38399,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38422,6 +38407,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38429,9 +38416,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38439,6 +38424,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38446,9 +38433,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38456,6 +38441,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38463,9 +38450,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38473,6 +38458,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38480,9 +38467,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38490,6 +38475,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38497,9 +38484,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38507,6 +38492,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38514,9 +38501,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38524,6 +38509,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38531,9 +38518,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38541,6 +38526,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38548,9 +38535,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38558,6 +38543,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38565,9 +38552,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38575,6 +38560,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38582,9 +38569,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38592,6 +38577,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38599,9 +38586,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38609,6 +38594,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38616,9 +38603,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38626,6 +38611,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38633,9 +38620,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38643,6 +38628,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38650,9 +38637,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38660,6 +38645,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38667,9 +38654,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38677,6 +38662,8 @@ "value": 56.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38684,9 +38671,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38694,6 +38679,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38701,9 +38688,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38711,6 +38696,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38718,9 +38705,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38728,6 +38713,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38735,9 +38722,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38745,6 +38730,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38752,9 +38739,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38762,6 +38747,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38769,9 +38756,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38779,6 +38764,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38786,9 +38773,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38796,6 +38781,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38803,9 +38790,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38813,6 +38798,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38820,9 +38807,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38830,6 +38815,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38837,9 +38824,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38847,6 +38832,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38854,9 +38841,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38864,6 +38849,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38871,9 +38858,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38881,6 +38866,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38888,9 +38875,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38898,6 +38883,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38905,9 +38892,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38915,6 +38900,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38922,9 +38909,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38932,6 +38917,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38939,9 +38926,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38949,6 +38934,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38956,9 +38943,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38966,6 +38951,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38973,9 +38960,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38983,6 +38968,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38990,9 +38977,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39000,6 +38985,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39007,9 +38994,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39017,6 +39002,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39024,9 +39011,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39034,6 +39019,8 @@ "value": 24.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39041,9 +39028,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39051,6 +39036,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39058,9 +39045,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39068,6 +39053,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39075,9 +39062,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39085,6 +39070,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39092,9 +39079,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39102,6 +39087,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39109,9 +39096,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39119,6 +39104,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39126,9 +39113,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39136,6 +39121,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39143,9 +39130,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39153,6 +39138,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39160,9 +39147,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39170,6 +39155,8 @@ "value": 28.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39177,9 +39164,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39187,6 +39172,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39194,9 +39181,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39204,6 +39189,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39211,9 +39198,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39221,6 +39206,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39228,9 +39215,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39238,6 +39223,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39245,9 +39232,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39255,6 +39240,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39262,9 +39249,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39272,6 +39257,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39279,9 +39266,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39289,6 +39274,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39296,9 +39283,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39306,6 +39291,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39313,9 +39300,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39323,6 +39308,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39330,9 +39317,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39340,6 +39325,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39347,9 +39334,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39357,6 +39342,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39364,9 +39351,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39374,6 +39359,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39381,9 +39368,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39391,6 +39376,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39398,9 +39385,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39408,6 +39393,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39415,9 +39402,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39425,6 +39410,8 @@ "value": 44.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39432,9 +39419,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39442,6 +39427,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39449,9 +39436,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39459,6 +39444,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39466,9 +39453,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39476,6 +39461,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39483,9 +39470,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39493,6 +39478,8 @@ "value": 48.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39500,9 +39487,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39510,6 +39495,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39517,9 +39504,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39527,6 +39512,8 @@ "value": 36.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39534,9 +39521,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39544,6 +39529,8 @@ "value": 32.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39551,9 +39538,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39561,6 +39546,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39568,9 +39555,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : RA 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39578,6 +39563,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39585,9 +39572,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39595,6 +39580,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39602,9 +39589,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39612,6 +39597,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39619,9 +39606,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39629,6 +39614,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39636,9 +39623,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39646,6 +39631,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39653,9 +39640,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39663,6 +39648,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39670,9 +39657,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39680,6 +39665,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39687,9 +39674,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39697,6 +39682,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39704,9 +39691,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39714,6 +39699,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39721,9 +39708,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39731,6 +39716,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39738,9 +39725,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39748,6 +39733,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39755,9 +39742,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39765,6 +39750,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39772,9 +39759,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39782,6 +39767,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39789,9 +39776,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39799,6 +39784,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39806,9 +39793,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39816,6 +39801,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39823,9 +39810,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39833,6 +39818,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39840,9 +39827,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39850,6 +39835,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39857,9 +39844,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39867,6 +39852,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39874,9 +39861,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39884,6 +39869,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39891,9 +39878,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39901,6 +39886,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39908,9 +39895,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39918,6 +39903,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39925,9 +39912,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39935,6 +39920,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39942,9 +39929,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39952,6 +39937,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39959,9 +39946,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39969,6 +39954,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39976,9 +39963,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39986,6 +39971,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39993,9 +39980,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40003,6 +39988,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40010,9 +39997,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40020,6 +40005,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40027,9 +40014,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40037,6 +40022,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40044,9 +40031,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40054,6 +40039,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40061,9 +40048,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40071,6 +40056,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40078,9 +40065,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40088,6 +40073,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40095,9 +40082,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40105,6 +40090,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40112,9 +40099,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40122,6 +40107,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40129,9 +40116,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40139,6 +40124,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40146,9 +40133,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40156,6 +40141,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40163,9 +40150,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40173,6 +40158,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40180,9 +40167,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40190,6 +40175,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40197,9 +40184,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40207,6 +40192,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40214,9 +40201,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40224,6 +40209,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40231,9 +40218,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40241,6 +40226,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40248,9 +40235,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40258,6 +40243,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40265,9 +40252,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40275,6 +40260,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40282,9 +40269,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40292,6 +40277,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40299,9 +40286,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40309,6 +40294,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40316,9 +40303,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40326,6 +40311,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40333,9 +40320,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40343,6 +40328,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40350,9 +40337,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40360,16 +40345,16 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "data source feature": "Fluorescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40377,6 +40362,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40384,9 +40371,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40394,6 +40379,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40401,9 +40388,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40411,6 +40396,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40418,9 +40405,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40428,6 +40413,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40435,9 +40422,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40445,6 +40430,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40452,9 +40439,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40462,6 +40447,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40469,9 +40456,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40479,6 +40464,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40486,9 +40473,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40496,6 +40481,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40503,9 +40490,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40513,6 +40498,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40520,9 +40507,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40530,6 +40515,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40537,9 +40524,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40547,6 +40532,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40554,9 +40541,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40564,6 +40549,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40571,9 +40558,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40581,6 +40566,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40588,9 +40575,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40598,6 +40583,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40605,9 +40592,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40615,6 +40600,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40622,9 +40609,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40632,6 +40617,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40639,9 +40626,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40649,6 +40634,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40656,9 +40643,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40666,6 +40651,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40673,9 +40660,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40683,6 +40668,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40690,9 +40677,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40700,6 +40685,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40707,9 +40694,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40717,6 +40702,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40724,9 +40711,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40734,6 +40719,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40741,9 +40728,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40751,6 +40736,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40758,9 +40745,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40768,6 +40753,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40775,9 +40762,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40785,6 +40770,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40792,9 +40779,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40802,6 +40787,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40809,9 +40796,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40819,6 +40804,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40826,9 +40813,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40836,6 +40821,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40843,9 +40830,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40853,6 +40838,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40860,9 +40847,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40870,6 +40855,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40877,9 +40864,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40887,6 +40872,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40894,9 +40881,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40904,6 +40889,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40911,9 +40898,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40921,6 +40906,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40928,9 +40915,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40938,6 +40923,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40945,9 +40932,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40955,6 +40940,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40962,9 +40949,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40972,6 +40957,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40979,9 +40966,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40989,6 +40974,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40996,9 +40983,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41006,6 +40991,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41013,9 +41000,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41023,6 +41008,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41030,9 +41017,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41040,6 +41025,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41047,9 +41034,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41057,6 +41042,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41064,9 +41051,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41074,6 +41059,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41081,9 +41068,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41091,6 +41076,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41098,9 +41085,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41108,6 +41093,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41115,9 +41102,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41125,6 +41110,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41132,9 +41119,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41142,6 +41127,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41149,9 +41136,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41159,6 +41144,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41166,9 +41153,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41176,6 +41161,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41183,9 +41170,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41193,6 +41178,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41200,9 +41187,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41210,6 +41195,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41217,9 +41204,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41227,6 +41212,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41234,9 +41221,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41244,6 +41229,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41251,9 +41238,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41261,6 +41246,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41268,9 +41255,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41278,6 +41263,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41285,9 +41272,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41295,6 +41280,8 @@ "value": 16.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41302,9 +41289,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41312,6 +41297,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41319,9 +41306,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41329,6 +41314,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41336,9 +41323,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41346,6 +41331,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41353,9 +41340,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41363,6 +41348,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41370,9 +41357,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41380,6 +41365,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41387,9 +41374,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41397,6 +41382,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41404,9 +41391,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41414,6 +41399,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41421,9 +41408,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41431,6 +41416,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41438,9 +41425,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41448,6 +41433,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41455,9 +41442,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41465,6 +41450,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41472,9 +41459,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41482,6 +41467,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41489,9 +41476,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41499,6 +41484,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41506,9 +41493,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41516,6 +41501,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41523,9 +41510,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41533,6 +41518,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41540,9 +41527,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41550,6 +41535,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41557,9 +41544,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41567,6 +41552,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41574,9 +41561,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41584,6 +41569,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41591,9 +41578,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41601,6 +41586,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41608,9 +41595,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41618,6 +41603,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41625,9 +41612,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41635,6 +41620,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41642,9 +41629,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41652,6 +41637,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41659,9 +41646,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41669,6 +41654,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41676,9 +41663,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41686,6 +41671,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41693,9 +41680,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41703,6 +41688,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41710,9 +41697,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41720,6 +41705,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41727,9 +41714,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41737,6 +41722,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41744,9 +41731,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41754,6 +41739,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41761,9 +41748,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41771,6 +41756,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41778,9 +41765,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41788,6 +41773,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41795,9 +41782,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41805,6 +41790,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41812,9 +41799,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41822,6 +41807,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41829,9 +41816,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41839,6 +41824,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41846,9 +41833,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41856,6 +41841,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41863,9 +41850,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41873,6 +41858,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41880,9 +41867,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41890,6 +41875,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41897,9 +41884,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41907,6 +41892,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41914,9 +41901,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41924,6 +41909,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41931,9 +41918,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41941,6 +41926,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41948,9 +41935,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41958,6 +41943,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41965,9 +41952,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41975,6 +41960,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41982,9 +41969,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41992,6 +41977,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41999,9 +41986,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42009,6 +41994,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42016,9 +42003,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42026,6 +42011,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42033,9 +42020,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42043,6 +42028,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42050,9 +42037,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42060,6 +42045,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42067,9 +42054,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42077,6 +42062,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42084,9 +42071,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42094,6 +42079,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42101,9 +42088,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42111,6 +42096,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42118,9 +42105,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42128,6 +42113,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42135,9 +42122,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42145,6 +42130,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42152,9 +42139,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42162,6 +42147,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42169,9 +42156,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42179,6 +42164,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42186,9 +42173,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42196,6 +42181,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42203,9 +42190,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42213,6 +42198,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42220,9 +42207,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42230,6 +42215,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42237,9 +42224,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42247,6 +42232,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42254,9 +42241,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42264,6 +42249,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42271,9 +42258,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42281,6 +42266,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42288,9 +42275,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42298,6 +42283,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42305,9 +42292,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42315,6 +42300,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42322,9 +42309,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42332,6 +42317,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42339,9 +42326,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42349,6 +42334,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42356,9 +42343,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42366,6 +42351,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42373,9 +42360,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42383,6 +42368,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42390,9 +42377,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42400,6 +42385,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42407,9 +42394,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42417,6 +42402,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42424,9 +42411,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42434,6 +42419,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42441,9 +42428,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42451,6 +42436,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42458,9 +42445,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42468,6 +42453,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42475,9 +42462,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42485,6 +42470,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42492,9 +42479,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42502,6 +42487,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42509,9 +42496,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42519,6 +42504,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42526,9 +42513,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42536,6 +42521,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42543,9 +42530,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42553,6 +42538,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42560,9 +42547,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42570,6 +42555,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42577,9 +42564,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42587,6 +42572,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42594,9 +42581,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42604,6 +42589,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42611,9 +42598,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42621,6 +42606,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42628,9 +42615,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42638,6 +42623,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42645,9 +42632,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42655,6 +42640,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42662,9 +42649,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42672,6 +42657,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42679,9 +42666,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42689,6 +42674,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42696,9 +42683,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42706,6 +42691,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42713,9 +42700,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42723,6 +42708,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42730,9 +42717,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42740,6 +42725,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42747,9 +42734,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42757,6 +42742,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42764,9 +42751,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42774,6 +42759,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42781,9 +42768,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42791,6 +42776,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42798,9 +42785,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42808,6 +42793,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42815,9 +42802,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42825,6 +42810,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42832,9 +42819,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42842,6 +42827,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42849,9 +42836,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42859,6 +42844,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42866,9 +42853,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42876,6 +42861,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42883,9 +42870,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42893,6 +42878,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42900,9 +42887,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42910,6 +42895,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42917,9 +42904,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42927,6 +42912,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42934,9 +42921,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42944,6 +42929,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42951,9 +42938,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42961,6 +42946,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42968,9 +42955,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42978,6 +42963,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42985,9 +42972,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42995,6 +42980,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43002,9 +42989,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43012,6 +42997,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43019,9 +43006,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43029,6 +43014,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43036,9 +43023,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43046,6 +43031,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43053,9 +43040,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43063,6 +43048,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43070,9 +43057,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43080,6 +43065,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43087,9 +43074,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43097,6 +43082,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43104,9 +43091,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43114,6 +43099,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43121,9 +43108,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43131,6 +43116,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43138,9 +43125,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43148,6 +43133,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43155,9 +43142,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43165,6 +43150,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43172,9 +43159,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43182,6 +43167,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43189,9 +43176,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43199,6 +43184,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43206,9 +43193,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43216,6 +43201,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43223,9 +43210,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43233,6 +43218,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43240,9 +43227,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43250,6 +43235,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43257,9 +43244,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43267,6 +43252,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43274,9 +43261,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43284,6 +43269,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43291,9 +43278,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43301,6 +43286,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43308,9 +43295,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43318,6 +43303,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43325,9 +43312,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43335,6 +43320,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43342,9 +43329,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43352,6 +43337,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43359,9 +43346,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43369,6 +43354,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43376,9 +43363,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43386,6 +43371,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43393,9 +43380,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43403,6 +43388,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43410,9 +43397,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43420,6 +43405,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43427,9 +43414,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43437,6 +43422,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43444,9 +43431,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43454,6 +43439,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43461,9 +43448,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43471,6 +43456,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43478,9 +43465,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43488,6 +43473,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43495,9 +43482,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43505,6 +43490,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43512,9 +43499,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43522,6 +43507,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43529,9 +43516,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43539,6 +43524,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43546,9 +43533,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43556,6 +43541,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43563,9 +43550,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43573,6 +43558,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43580,9 +43567,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43590,6 +43575,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43597,9 +43584,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43607,6 +43592,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43614,9 +43601,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43624,6 +43609,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43631,9 +43618,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43641,6 +43626,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43648,9 +43635,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43658,6 +43643,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43665,9 +43652,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43675,6 +43660,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43682,9 +43669,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43692,6 +43677,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43699,9 +43686,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43709,6 +43694,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43716,9 +43703,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43726,6 +43711,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43733,9 +43720,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43743,6 +43728,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43750,9 +43737,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43760,6 +43745,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43767,9 +43754,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43777,6 +43762,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43784,9 +43771,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43794,6 +43779,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43801,9 +43788,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43811,6 +43796,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43818,9 +43805,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43828,6 +43813,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43835,9 +43822,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43845,6 +43830,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43852,9 +43839,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43862,6 +43847,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43869,9 +43856,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43879,6 +43864,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43886,9 +43873,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43896,6 +43881,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43903,9 +43890,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43913,6 +43898,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43920,9 +43907,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43930,6 +43915,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43937,9 +43924,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43947,6 +43932,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43954,9 +43941,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43964,6 +43949,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43971,9 +43958,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43981,6 +43966,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43988,9 +43975,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43998,6 +43983,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44005,9 +43992,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44015,6 +44000,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44022,9 +44009,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44032,6 +44017,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44039,9 +44026,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44049,6 +44034,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44056,9 +44043,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44066,6 +44051,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44073,9 +44060,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44083,6 +44068,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44090,9 +44077,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44100,6 +44085,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44107,9 +44094,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44117,6 +44102,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44124,9 +44111,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44134,6 +44119,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44141,9 +44128,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44151,6 +44136,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44158,9 +44145,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44168,6 +44153,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44175,9 +44162,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44185,6 +44170,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44192,9 +44179,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44202,6 +44187,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44209,9 +44196,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44219,6 +44204,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44226,9 +44213,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44236,6 +44221,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44243,9 +44230,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44253,6 +44238,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44260,9 +44247,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44270,6 +44255,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44277,9 +44264,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44287,6 +44272,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44294,9 +44281,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44304,6 +44289,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44311,9 +44298,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44321,6 +44306,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44328,9 +44315,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44338,6 +44323,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44345,9 +44332,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44355,6 +44340,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44362,9 +44349,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44372,6 +44357,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44379,9 +44366,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44389,6 +44374,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44396,9 +44383,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44406,6 +44391,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44413,9 +44400,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44423,6 +44408,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44430,9 +44417,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44440,6 +44425,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44447,9 +44434,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44457,6 +44442,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44464,9 +44451,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44474,6 +44459,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44481,9 +44468,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44491,6 +44476,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44498,9 +44485,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44508,6 +44493,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44515,9 +44502,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44525,6 +44510,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44532,9 +44519,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44542,6 +44527,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44549,9 +44536,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44559,6 +44544,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44566,9 +44553,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44576,6 +44561,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44583,9 +44570,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44593,6 +44578,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44600,9 +44587,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44610,6 +44595,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44617,9 +44604,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44627,6 +44612,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44634,9 +44621,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44644,6 +44629,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44651,9 +44638,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44661,6 +44646,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44668,9 +44655,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44678,6 +44663,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44685,9 +44672,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44695,6 +44680,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44702,9 +44689,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44712,6 +44697,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44719,9 +44706,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44729,6 +44714,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44736,9 +44723,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44746,6 +44731,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44753,9 +44740,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44763,6 +44748,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44770,9 +44757,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44780,6 +44765,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44787,9 +44774,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44797,6 +44782,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44804,9 +44791,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44814,6 +44799,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44821,9 +44808,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44831,6 +44816,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44838,9 +44825,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44848,6 +44833,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44855,9 +44842,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44865,6 +44850,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44872,9 +44859,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44882,6 +44867,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44889,9 +44876,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44899,6 +44884,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44906,9 +44893,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44916,6 +44901,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44923,9 +44910,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44933,6 +44918,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44940,9 +44927,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44950,6 +44935,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44957,9 +44944,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44967,6 +44952,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44974,9 +44961,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44984,6 +44969,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44991,9 +44978,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45001,6 +44986,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45008,9 +44995,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45018,6 +45003,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45025,9 +45012,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45035,6 +45020,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45042,9 +45029,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45052,6 +45037,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45059,9 +45046,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45069,6 +45054,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45076,9 +45063,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45086,6 +45071,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45093,9 +45080,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45103,6 +45088,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45110,9 +45097,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45120,6 +45105,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45127,9 +45114,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45137,6 +45122,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45144,9 +45131,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45154,6 +45139,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45161,9 +45148,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45171,6 +45156,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45178,9 +45165,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45188,6 +45173,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45195,9 +45182,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45205,6 +45190,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45212,9 +45199,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45222,6 +45207,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45229,9 +45216,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45239,6 +45224,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45246,9 +45233,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45256,6 +45241,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45263,9 +45250,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45273,6 +45258,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45280,9 +45267,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45290,6 +45275,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45297,9 +45284,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45307,6 +45292,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45314,9 +45301,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45324,6 +45309,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45331,9 +45318,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45341,6 +45326,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45348,9 +45335,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45358,6 +45343,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45365,9 +45352,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45375,6 +45360,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45382,9 +45369,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45392,6 +45377,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45399,9 +45386,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45409,6 +45394,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45416,9 +45403,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45426,6 +45411,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45433,9 +45420,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45443,6 +45428,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45450,9 +45437,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45460,6 +45445,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45467,9 +45454,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45477,6 +45462,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45484,9 +45471,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45494,6 +45479,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45501,9 +45488,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45511,6 +45496,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45518,9 +45505,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45528,6 +45513,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45535,9 +45522,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45545,6 +45530,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45552,9 +45539,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45562,6 +45547,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45569,9 +45556,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45579,6 +45564,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45586,9 +45573,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45596,6 +45581,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45603,9 +45590,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45613,6 +45598,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45620,9 +45607,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45630,6 +45615,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45637,9 +45624,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45647,6 +45632,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45654,9 +45641,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45664,6 +45649,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45671,9 +45658,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45681,6 +45666,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45688,9 +45675,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45698,6 +45683,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45705,9 +45692,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45715,6 +45700,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45722,9 +45709,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45732,6 +45717,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45739,9 +45726,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45749,6 +45734,8 @@ "value": 12.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45756,9 +45743,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45766,6 +45751,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45773,9 +45760,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45783,6 +45768,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45790,9 +45777,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45800,6 +45785,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45807,9 +45794,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45817,6 +45802,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45824,9 +45811,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45834,6 +45819,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45841,9 +45828,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45851,6 +45836,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45858,9 +45845,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45868,6 +45853,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45875,9 +45862,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45885,6 +45870,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45892,9 +45879,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45902,6 +45887,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45909,9 +45896,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45919,6 +45904,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45926,9 +45913,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45936,6 +45921,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45943,9 +45930,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45953,6 +45938,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45960,9 +45947,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45970,6 +45955,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45977,9 +45964,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45987,6 +45972,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45994,9 +45981,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46004,6 +45989,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46011,9 +45998,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46021,6 +46006,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46028,9 +46015,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46038,6 +46023,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46045,9 +46032,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46055,6 +46040,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46062,9 +46049,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46072,6 +46057,8 @@ "value": 4.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46079,9 +46066,7 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -46089,6 +46074,8 @@ "value": 8.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -46096,11 +46083,24 @@ "data source feature": "Fluorescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : HTS 384 OptiPlate(1) channel 1" + } } ] + }, + "data system document": { + "ASM file identifier": "PE_Envision_fluorescence_example04.json", + "data system instance identifier": "N/A", + "file name": "PE_Envision_fluorescence_example04.csv", + "UNC path": "N/A", + "ASM converter name": "allotropy_perkinelmer_envision", + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.14.3049.1193" + }, + "device system document": { + "device identifier": "EnVision#Alpha_680nm", + "model number": "EnVision", + "equipment serial number": "1051017" } } } diff --git a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json index 857fd2057..1ac8ebc3d 100644 --- a/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json +++ b/tests/parsers/perkin_elmer_envision/testdata/PE_Envision_luminescence_example01.json @@ -4,14 +4,8 @@ "plate reader document": [ { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "device control aggregate document": { "device control document": [ { @@ -23,22 +17,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_384", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -46,14 +46,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "device control aggregate document": { "device control document": [ { @@ -65,22 +59,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_385", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -88,14 +88,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "device control aggregate document": { "device control document": [ { @@ -107,22 +101,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_386", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -130,14 +130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "device control aggregate document": { "device control document": [ { @@ -149,22 +143,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_387", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A4", "location identifier": "A4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -172,14 +172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "device control aggregate document": { "device control document": [ { @@ -191,22 +185,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_388", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -214,14 +214,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "device control aggregate document": { "device control document": [ { @@ -233,22 +227,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_389", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -256,14 +256,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "device control aggregate document": { "device control document": [ { @@ -275,22 +269,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_390", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -298,14 +298,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "device control aggregate document": { "device control document": [ { @@ -317,22 +311,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_391", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A8", "location identifier": "A8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -340,14 +340,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "device control aggregate document": { "device control document": [ { @@ -359,22 +353,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_392", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A9", "location identifier": "A9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -382,14 +382,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "device control aggregate document": { "device control document": [ { @@ -401,22 +395,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_393", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A10", "location identifier": "A10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -424,14 +424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "device control aggregate document": { "device control document": [ { @@ -443,22 +437,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_394", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A11", "location identifier": "A11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -466,14 +466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "device control aggregate document": { "device control document": [ { @@ -485,22 +479,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_395", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A12", "location identifier": "A12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -508,14 +508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "device control aggregate document": { "device control document": [ { @@ -527,22 +521,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_396", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A13", "location identifier": "A13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -550,14 +550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "device control aggregate document": { "device control document": [ { @@ -569,22 +563,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_397", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A14", "location identifier": "A14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -592,14 +592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "device control aggregate document": { "device control document": [ { @@ -611,22 +605,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_398", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A15", "location identifier": "A15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -634,14 +634,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "device control aggregate document": { "device control document": [ { @@ -653,22 +647,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_399", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A16", "location identifier": "A16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -676,14 +676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "device control aggregate document": { "device control document": [ { @@ -695,22 +689,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_400", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A17", "location identifier": "A17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -718,14 +718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "device control aggregate document": { "device control document": [ { @@ -737,22 +731,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_401", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A18", "location identifier": "A18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -760,14 +760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "device control aggregate document": { "device control document": [ { @@ -779,22 +773,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_402", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A19", "location identifier": "A19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -802,14 +802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "device control aggregate document": { "device control document": [ { @@ -821,22 +815,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_403", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A20", "location identifier": "A20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -844,14 +844,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "device control aggregate document": { "device control document": [ { @@ -863,22 +857,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_404", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A21", "location identifier": "A21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -886,14 +886,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "device control aggregate document": { "device control document": [ { @@ -905,22 +899,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_405", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A22", "location identifier": "A22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -928,14 +928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "device control aggregate document": { "device control document": [ { @@ -947,22 +941,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_406", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A23", "location identifier": "A23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -970,14 +970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "device control aggregate document": { "device control document": [ { @@ -989,22 +983,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_407", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM A24", "location identifier": "A24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1012,14 +1012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "device control aggregate document": { "device control document": [ { @@ -1031,22 +1025,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_408", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1054,14 +1054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "device control aggregate document": { "device control document": [ { @@ -1073,22 +1067,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_409", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" - } + }, + "luminescence": { + "value": 40, + "unit": "RLU" + } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1096,14 +1096,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "device control aggregate document": { "device control document": [ { @@ -1115,22 +1109,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_410", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1138,14 +1138,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "device control aggregate document": { "device control document": [ { @@ -1157,22 +1151,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_411", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B4", "location identifier": "B4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1180,14 +1180,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "device control aggregate document": { "device control document": [ { @@ -1199,22 +1193,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_412", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1222,14 +1222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "device control aggregate document": { "device control document": [ { @@ -1241,22 +1235,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_413", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1264,14 +1264,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "device control aggregate document": { "device control document": [ { @@ -1283,22 +1277,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_414", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1306,14 +1306,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "device control aggregate document": { "device control document": [ { @@ -1325,22 +1319,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_415", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B8", "location identifier": "B8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1348,14 +1348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", "device control aggregate document": { "device control document": [ { @@ -1367,22 +1361,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_416", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B9", "location identifier": "B9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1390,14 +1390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", "device control aggregate document": { "device control document": [ { @@ -1409,22 +1403,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_417", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B10", "location identifier": "B10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1432,14 +1432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", "device control aggregate document": { "device control document": [ { @@ -1451,22 +1445,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_418", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B11", "location identifier": "B11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1474,14 +1474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", "device control aggregate document": { "device control document": [ { @@ -1493,22 +1487,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_419", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B12", "location identifier": "B12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1516,14 +1516,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", "device control aggregate document": { "device control document": [ { @@ -1535,22 +1529,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_420", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B13", "location identifier": "B13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1558,14 +1558,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", "device control aggregate document": { "device control document": [ { @@ -1577,22 +1571,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_421", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B14", "location identifier": "B14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1600,14 +1600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", "device control aggregate document": { "device control document": [ { @@ -1619,22 +1613,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_422", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B15", "location identifier": "B15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1642,14 +1642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", "device control aggregate document": { "device control document": [ { @@ -1661,22 +1655,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_423", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B16", "location identifier": "B16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1684,14 +1684,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", "device control aggregate document": { "device control document": [ { @@ -1703,22 +1697,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_424", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B17", "location identifier": "B17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1726,14 +1726,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", "device control aggregate document": { "device control document": [ { @@ -1745,22 +1739,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_425", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B18", "location identifier": "B18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1768,14 +1768,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", "device control aggregate document": { "device control document": [ { @@ -1787,22 +1781,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_426", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B19", "location identifier": "B19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1810,14 +1810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", "device control aggregate document": { "device control document": [ { @@ -1829,22 +1823,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_427", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B20", "location identifier": "B20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1852,14 +1852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", "device control aggregate document": { "device control document": [ { @@ -1871,22 +1865,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_428", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B21", "location identifier": "B21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1894,14 +1894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", "device control aggregate document": { "device control document": [ { @@ -1913,22 +1907,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_429", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B22", "location identifier": "B22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1936,14 +1936,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", "device control aggregate document": { "device control document": [ { @@ -1955,22 +1949,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_430", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B23", "location identifier": "B23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -1978,14 +1978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", "device control aggregate document": { "device control document": [ { @@ -1997,22 +1991,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_431", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM B24", "location identifier": "B24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2020,14 +2020,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", "device control aggregate document": { "device control document": [ { @@ -2039,22 +2033,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_432", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2062,14 +2062,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", "device control aggregate document": { "device control document": [ { @@ -2081,22 +2075,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_433", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2104,14 +2104,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", "device control aggregate document": { "device control document": [ { @@ -2123,22 +2117,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_434", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2146,14 +2146,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", "device control aggregate document": { "device control document": [ { @@ -2165,22 +2159,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_435", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C4", "location identifier": "C4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2188,14 +2188,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", "device control aggregate document": { "device control document": [ { @@ -2207,22 +2201,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_436", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2230,14 +2230,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", "device control aggregate document": { "device control document": [ { @@ -2249,22 +2243,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_437", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2272,14 +2272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", "device control aggregate document": { "device control document": [ { @@ -2291,22 +2285,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_438", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2314,14 +2314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", "device control aggregate document": { "device control document": [ { @@ -2333,22 +2327,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_439", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C8", "location identifier": "C8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2356,14 +2356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", "device control aggregate document": { "device control document": [ { @@ -2375,22 +2369,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_440", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C9", "location identifier": "C9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2398,14 +2398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", "device control aggregate document": { "device control document": [ { @@ -2417,22 +2411,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_441", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C10", "location identifier": "C10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2440,14 +2440,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", "device control aggregate document": { "device control document": [ { @@ -2459,22 +2453,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_442", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C11", "location identifier": "C11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2482,14 +2482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", "device control aggregate document": { "device control document": [ { @@ -2501,22 +2495,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_443", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C12", "location identifier": "C12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2524,14 +2524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", "device control aggregate document": { "device control document": [ { @@ -2543,22 +2537,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_444", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C13", "location identifier": "C13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2566,14 +2566,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", "device control aggregate document": { "device control document": [ { @@ -2585,22 +2579,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_445", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C14", "location identifier": "C14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2608,14 +2608,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", "device control aggregate document": { "device control document": [ { @@ -2627,22 +2621,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_446", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C15", "location identifier": "C15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2650,14 +2650,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", "device control aggregate document": { "device control document": [ { @@ -2669,22 +2663,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_447", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C16", "location identifier": "C16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2692,14 +2692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", "device control aggregate document": { "device control document": [ { @@ -2711,22 +2705,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_448", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C17", "location identifier": "C17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2734,14 +2734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", "device control aggregate document": { "device control document": [ { @@ -2753,22 +2747,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_449", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C18", "location identifier": "C18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2776,14 +2776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", "device control aggregate document": { "device control document": [ { @@ -2795,22 +2789,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_450", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C19", "location identifier": "C19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2818,14 +2818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", "device control aggregate document": { "device control document": [ { @@ -2837,22 +2831,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_451", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C20", "location identifier": "C20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2860,14 +2860,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", "device control aggregate document": { "device control document": [ { @@ -2879,22 +2873,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_452", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C21", "location identifier": "C21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2902,14 +2902,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", "device control aggregate document": { "device control document": [ { @@ -2921,22 +2915,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_453", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C22", "location identifier": "C22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2944,14 +2944,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", "device control aggregate document": { "device control document": [ { @@ -2963,22 +2957,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_454", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C23", "location identifier": "C23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -2986,14 +2986,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", "device control aggregate document": { "device control document": [ { @@ -3005,22 +2999,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_455", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM C24", "location identifier": "C24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3028,14 +3028,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", "device control aggregate document": { "device control document": [ { @@ -3047,22 +3041,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_456", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3070,14 +3070,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", "device control aggregate document": { "device control document": [ { @@ -3089,22 +3083,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_457", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3112,14 +3112,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", "device control aggregate document": { "device control document": [ { @@ -3131,22 +3125,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_458", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3154,14 +3154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", "device control aggregate document": { "device control document": [ { @@ -3173,22 +3167,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_459", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D4", "location identifier": "D4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3196,14 +3196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", "device control aggregate document": { "device control document": [ { @@ -3215,22 +3209,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_460", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" - } - } - ], + }, + "luminescence": { + "value": 40, + "unit": "RLU" + } + } + ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3238,14 +3238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", "device control aggregate document": { "device control document": [ { @@ -3257,22 +3251,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_461", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3280,14 +3280,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", "device control aggregate document": { "device control document": [ { @@ -3299,22 +3293,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_462", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3322,14 +3322,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", "device control aggregate document": { "device control document": [ { @@ -3341,22 +3335,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_463", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D8", "location identifier": "D8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3364,14 +3364,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", "device control aggregate document": { "device control document": [ { @@ -3383,22 +3377,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_464", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D9", "location identifier": "D9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3406,14 +3406,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", "device control aggregate document": { "device control document": [ { @@ -3425,22 +3419,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_465", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D10", "location identifier": "D10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3448,14 +3448,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", "device control aggregate document": { "device control document": [ { @@ -3467,22 +3461,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_466", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D11", "location identifier": "D11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3490,14 +3490,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", "device control aggregate document": { "device control document": [ { @@ -3509,22 +3503,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_467", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D12", "location identifier": "D12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3532,14 +3532,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", "device control aggregate document": { "device control document": [ { @@ -3551,22 +3545,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_468", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D13", "location identifier": "D13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3574,14 +3574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", "device control aggregate document": { "device control document": [ { @@ -3593,22 +3587,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_469", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D14", "location identifier": "D14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3616,14 +3616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", "device control aggregate document": { "device control document": [ { @@ -3635,22 +3629,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_470", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D15", "location identifier": "D15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3658,14 +3658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", "device control aggregate document": { "device control document": [ { @@ -3677,22 +3671,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_471", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D16", "location identifier": "D16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3700,14 +3700,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", "device control aggregate document": { "device control document": [ { @@ -3719,22 +3713,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_472", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D17", "location identifier": "D17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3742,14 +3742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", "device control aggregate document": { "device control document": [ { @@ -3761,22 +3755,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_473", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D18", "location identifier": "D18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3784,14 +3784,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "device control aggregate document": { "device control document": [ { @@ -3803,22 +3797,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D19", "location identifier": "D19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3826,14 +3826,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", "device control aggregate document": { "device control document": [ { @@ -3845,22 +3839,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_475", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D20", "location identifier": "D20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3868,14 +3868,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", "device control aggregate document": { "device control document": [ { @@ -3887,22 +3881,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_476", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D21", "location identifier": "D21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3910,14 +3910,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", "device control aggregate document": { "device control document": [ { @@ -3929,22 +3923,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_477", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D22", "location identifier": "D22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3952,14 +3952,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", "device control aggregate document": { "device control document": [ { @@ -3971,22 +3965,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_478", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D23", "location identifier": "D23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -3994,14 +3994,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", "device control aggregate document": { "device control document": [ { @@ -4013,22 +4007,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_479", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM D24", "location identifier": "D24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4036,14 +4036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", "device control aggregate document": { "device control document": [ { @@ -4055,22 +4049,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_480", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4078,14 +4078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", "device control aggregate document": { "device control document": [ { @@ -4097,22 +4091,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_481", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4120,14 +4120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", "device control aggregate document": { "device control document": [ { @@ -4139,22 +4133,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_482", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4162,14 +4162,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", "device control aggregate document": { "device control document": [ { @@ -4181,22 +4175,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_483", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E4", "location identifier": "E4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4204,14 +4204,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", "device control aggregate document": { "device control document": [ { @@ -4223,22 +4217,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_484", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4246,14 +4246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", "device control aggregate document": { "device control document": [ { @@ -4265,22 +4259,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_485", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4288,14 +4288,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", "device control aggregate document": { "device control document": [ { @@ -4307,22 +4301,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_486", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4330,14 +4330,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", "device control aggregate document": { "device control document": [ { @@ -4349,22 +4343,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_487", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E8", "location identifier": "E8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4372,14 +4372,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", "device control aggregate document": { "device control document": [ { @@ -4391,22 +4385,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_488", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E9", "location identifier": "E9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4414,14 +4414,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", "device control aggregate document": { "device control document": [ { @@ -4433,22 +4427,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_489", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E10", "location identifier": "E10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4456,14 +4456,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", "device control aggregate document": { "device control document": [ { @@ -4475,22 +4469,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_490", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E11", "location identifier": "E11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4498,14 +4498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", "device control aggregate document": { "device control document": [ { @@ -4517,22 +4511,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_491", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E12", "location identifier": "E12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4540,14 +4540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", "device control aggregate document": { "device control document": [ { @@ -4559,22 +4553,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_492", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E13", "location identifier": "E13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4582,14 +4582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", "device control aggregate document": { "device control document": [ { @@ -4601,22 +4595,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_493", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E14", "location identifier": "E14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4624,14 +4624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", "device control aggregate document": { "device control document": [ { @@ -4643,22 +4637,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_494", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E15", "location identifier": "E15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4666,14 +4666,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", "device control aggregate document": { "device control document": [ { @@ -4685,22 +4679,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_495", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E16", "location identifier": "E16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4708,14 +4708,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", "device control aggregate document": { "device control document": [ { @@ -4727,22 +4721,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_496", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E17", "location identifier": "E17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4750,14 +4750,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", "device control aggregate document": { "device control document": [ { @@ -4769,22 +4763,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_497", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E18", "location identifier": "E18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4792,14 +4792,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", "device control aggregate document": { "device control document": [ { @@ -4811,22 +4805,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_498", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E19", "location identifier": "E19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4834,14 +4834,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", "device control aggregate document": { "device control document": [ { @@ -4853,22 +4847,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_499", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E20", "location identifier": "E20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4876,14 +4876,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", "device control aggregate document": { "device control document": [ { @@ -4895,22 +4889,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_500", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E21", "location identifier": "E21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4918,14 +4918,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", "device control aggregate document": { "device control document": [ { @@ -4937,22 +4931,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_501", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E22", "location identifier": "E22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -4960,14 +4960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", "device control aggregate document": { "device control document": [ { @@ -4979,37 +4973,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_502", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E23", "location identifier": "E23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", "device control aggregate document": { "device control document": [ { @@ -5021,22 +5015,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_503", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM E24", "location identifier": "E24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5044,14 +5044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", "device control aggregate document": { "device control document": [ { @@ -5063,22 +5057,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_504", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5086,14 +5086,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", "device control aggregate document": { "device control document": [ { @@ -5105,22 +5099,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_505", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5128,14 +5128,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", "device control aggregate document": { "device control document": [ { @@ -5147,22 +5141,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_506", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5170,14 +5170,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", "device control aggregate document": { "device control document": [ { @@ -5189,22 +5183,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_507", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F4", "location identifier": "F4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5212,14 +5212,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", "device control aggregate document": { "device control document": [ { @@ -5231,22 +5225,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_508", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5254,14 +5254,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", "device control aggregate document": { "device control document": [ { @@ -5273,22 +5267,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_509", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5296,14 +5296,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", "device control aggregate document": { "device control document": [ { @@ -5315,22 +5309,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_510", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5338,14 +5338,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", "device control aggregate document": { "device control document": [ { @@ -5357,22 +5351,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_511", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F8", "location identifier": "F8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5380,14 +5380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", "device control aggregate document": { "device control document": [ { @@ -5399,22 +5393,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_512", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F9", "location identifier": "F9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5422,14 +5422,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", "device control aggregate document": { "device control document": [ { @@ -5441,22 +5435,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_513", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F10", "location identifier": "F10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5464,14 +5464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", "device control aggregate document": { "device control document": [ { @@ -5483,22 +5477,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_514", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F11", "location identifier": "F11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5506,14 +5506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", "device control aggregate document": { "device control document": [ { @@ -5525,22 +5519,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_515", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F12", "location identifier": "F12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5548,14 +5548,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", "device control aggregate document": { "device control document": [ { @@ -5567,22 +5561,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_516", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F13", "location identifier": "F13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5590,14 +5590,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", "device control aggregate document": { "device control document": [ { @@ -5609,22 +5603,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_517", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F14", "location identifier": "F14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5632,14 +5632,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", "device control aggregate document": { "device control document": [ { @@ -5651,22 +5645,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_518", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F15", "location identifier": "F15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5674,14 +5674,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", "device control aggregate document": { "device control document": [ { @@ -5693,22 +5687,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_519", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F16", "location identifier": "F16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5716,14 +5716,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", "device control aggregate document": { "device control document": [ { @@ -5735,22 +5729,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_520", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F17", "location identifier": "F17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5758,14 +5758,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", "device control aggregate document": { "device control document": [ { @@ -5777,22 +5771,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_521", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F18", "location identifier": "F18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5800,14 +5800,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", "device control aggregate document": { "device control document": [ { @@ -5819,22 +5813,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_522", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F19", "location identifier": "F19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5842,14 +5842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", "device control aggregate document": { "device control document": [ { @@ -5861,22 +5855,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_523", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F20", "location identifier": "F20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5884,14 +5884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", "device control aggregate document": { "device control document": [ { @@ -5903,22 +5897,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_524", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F21", "location identifier": "F21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5926,14 +5926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", "device control aggregate document": { "device control document": [ { @@ -5945,22 +5939,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_525", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F22", "location identifier": "F22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -5968,14 +5968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", "device control aggregate document": { "device control document": [ { @@ -5987,22 +5981,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_526", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F23", "location identifier": "F23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6010,14 +6010,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", "device control aggregate document": { "device control document": [ { @@ -6029,22 +6023,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_527", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM F24", "location identifier": "F24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6052,14 +6052,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", "device control aggregate document": { "device control document": [ { @@ -6071,22 +6065,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_528", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6094,14 +6094,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", "device control aggregate document": { "device control document": [ { @@ -6113,22 +6107,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_529", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6136,14 +6136,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", "device control aggregate document": { "device control document": [ { @@ -6155,22 +6149,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_530", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6178,14 +6178,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", "device control aggregate document": { "device control document": [ { @@ -6197,22 +6191,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_531", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G4", "location identifier": "G4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6220,14 +6220,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", "device control aggregate document": { "device control document": [ { @@ -6239,22 +6233,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_532", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6262,14 +6262,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", "device control aggregate document": { "device control document": [ { @@ -6281,22 +6275,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_533", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6304,14 +6304,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", "device control aggregate document": { "device control document": [ { @@ -6323,22 +6317,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_534", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6346,14 +6346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", "device control aggregate document": { "device control document": [ { @@ -6365,22 +6359,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_535", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G8", "location identifier": "G8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6388,14 +6388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", "device control aggregate document": { "device control document": [ { @@ -6407,22 +6401,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_536", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G9", "location identifier": "G9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6430,14 +6430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", "device control aggregate document": { "device control document": [ { @@ -6449,22 +6443,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_537", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G10", "location identifier": "G10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6472,14 +6472,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", "device control aggregate document": { "device control document": [ { @@ -6491,22 +6485,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_538", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G11", "location identifier": "G11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6514,14 +6514,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", "device control aggregate document": { "device control document": [ { @@ -6533,22 +6527,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_539", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G12", "location identifier": "G12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6556,14 +6556,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", "device control aggregate document": { "device control document": [ { @@ -6575,22 +6569,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_540", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G13", "location identifier": "G13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6598,14 +6598,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", "device control aggregate document": { "device control document": [ { @@ -6617,22 +6611,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_541", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G14", "location identifier": "G14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6640,14 +6640,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", "device control aggregate document": { "device control document": [ { @@ -6659,22 +6653,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_542", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G15", "location identifier": "G15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6682,14 +6682,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", "device control aggregate document": { "device control document": [ { @@ -6701,22 +6695,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_543", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G16", "location identifier": "G16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6724,14 +6724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", "device control aggregate document": { "device control document": [ { @@ -6743,22 +6737,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_544", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G17", "location identifier": "G17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6766,14 +6766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", "device control aggregate document": { "device control document": [ { @@ -6785,22 +6779,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_545", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G18", "location identifier": "G18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6808,14 +6808,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", "device control aggregate document": { "device control document": [ { @@ -6827,22 +6821,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_546", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G19", "location identifier": "G19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 120, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 120, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6850,14 +6850,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", "device control aggregate document": { "device control document": [ { @@ -6869,22 +6863,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_547", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G20", "location identifier": "G20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6892,14 +6892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", "device control aggregate document": { "device control document": [ { @@ -6911,22 +6905,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_548", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G21", "location identifier": "G21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6934,14 +6934,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", "device control aggregate document": { "device control document": [ { @@ -6953,22 +6947,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_549", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G22", "location identifier": "G22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -6976,14 +6976,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", "device control aggregate document": { "device control document": [ { @@ -6995,22 +6989,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_550", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G23", "location identifier": "G23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7018,14 +7018,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", "device control aggregate document": { "device control document": [ { @@ -7037,22 +7031,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_551", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM G24", "location identifier": "G24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7060,14 +7060,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", "device control aggregate document": { "device control document": [ { @@ -7079,22 +7073,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_552", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7102,14 +7102,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", "device control aggregate document": { "device control document": [ { @@ -7121,37 +7115,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_553", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", "device control aggregate document": { "device control document": [ { @@ -7163,22 +7157,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_554", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7186,14 +7186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", "device control aggregate document": { "device control document": [ { @@ -7205,22 +7199,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_555", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H4", "location identifier": "H4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7228,14 +7228,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", "device control aggregate document": { "device control document": [ { @@ -7247,22 +7241,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_556", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7270,14 +7270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", "device control aggregate document": { "device control document": [ { @@ -7289,22 +7283,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_557", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7312,14 +7312,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", "device control aggregate document": { "device control document": [ { @@ -7331,22 +7325,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_558", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7354,14 +7354,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", "device control aggregate document": { "device control document": [ { @@ -7373,22 +7367,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_559", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H8", "location identifier": "H8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7396,14 +7396,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", "device control aggregate document": { "device control document": [ { @@ -7415,22 +7409,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_560", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H9", "location identifier": "H9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7438,14 +7438,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", "device control aggregate document": { "device control document": [ { @@ -7457,22 +7451,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_561", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H10", "location identifier": "H10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7480,14 +7480,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", "device control aggregate document": { "device control document": [ { @@ -7499,22 +7493,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_562", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H11", "location identifier": "H11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7522,14 +7522,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", "device control aggregate document": { "device control document": [ { @@ -7541,22 +7535,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_563", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H12", "location identifier": "H12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7564,14 +7564,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", "device control aggregate document": { "device control document": [ { @@ -7583,22 +7577,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_564", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H13", "location identifier": "H13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7606,14 +7606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", "device control aggregate document": { "device control document": [ { @@ -7625,22 +7619,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_565", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H14", "location identifier": "H14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7648,14 +7648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", "device control aggregate document": { "device control document": [ { @@ -7667,22 +7661,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_566", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H15", "location identifier": "H15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7690,14 +7690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", "device control aggregate document": { "device control document": [ { @@ -7709,22 +7703,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_567", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H16", "location identifier": "H16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7732,14 +7732,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", "device control aggregate document": { "device control document": [ { @@ -7751,22 +7745,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_568", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H17", "location identifier": "H17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7774,14 +7774,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", "device control aggregate document": { "device control document": [ { @@ -7793,22 +7787,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_569", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H18", "location identifier": "H18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7816,14 +7816,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", "device control aggregate document": { "device control document": [ { @@ -7835,22 +7829,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_570", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H19", "location identifier": "H19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7858,14 +7858,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", "device control aggregate document": { "device control document": [ { @@ -7877,22 +7871,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_571", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H20", "location identifier": "H20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7900,14 +7900,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", "device control aggregate document": { "device control document": [ { @@ -7919,22 +7913,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_572", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H21", "location identifier": "H21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7942,14 +7942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", "device control aggregate document": { "device control document": [ { @@ -7961,22 +7955,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_573", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H22", "location identifier": "H22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -7984,14 +7984,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", "device control aggregate document": { "device control document": [ { @@ -8003,22 +7997,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_574", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H23", "location identifier": "H23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8026,14 +8026,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", "device control aggregate document": { "device control document": [ { @@ -8045,22 +8039,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_575", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM H24", "location identifier": "H24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8068,14 +8068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", "device control aggregate document": { "device control document": [ { @@ -8087,22 +8081,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_576", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I1", "location identifier": "I1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8110,14 +8110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", "device control aggregate document": { "device control document": [ { @@ -8129,22 +8123,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_577", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I2", "location identifier": "I2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8152,14 +8152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", "device control aggregate document": { "device control document": [ { @@ -8171,22 +8165,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_578", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I3", "location identifier": "I3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8194,14 +8194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", "device control aggregate document": { "device control document": [ { @@ -8213,22 +8207,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_579", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I4", "location identifier": "I4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8236,14 +8236,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", "device control aggregate document": { "device control document": [ { @@ -8255,22 +8249,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_580", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I5", "location identifier": "I5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8278,14 +8278,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", "device control aggregate document": { "device control document": [ { @@ -8297,22 +8291,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_581", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I6", "location identifier": "I6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8320,14 +8320,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", "device control aggregate document": { "device control document": [ { @@ -8339,22 +8333,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_582", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I7", "location identifier": "I7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8362,14 +8362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", "device control aggregate document": { "device control document": [ { @@ -8381,22 +8375,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_583", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I8", "location identifier": "I8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 120, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 120, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8404,14 +8404,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", "device control aggregate document": { "device control document": [ { @@ -8423,22 +8417,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_584", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I9", "location identifier": "I9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8446,14 +8446,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", "device control aggregate document": { "device control document": [ { @@ -8465,22 +8459,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_585", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I10", "location identifier": "I10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8488,14 +8488,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", "device control aggregate document": { "device control document": [ { @@ -8507,22 +8501,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_586", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I11", "location identifier": "I11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8530,14 +8530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", "device control aggregate document": { "device control document": [ { @@ -8549,22 +8543,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_587", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I12", "location identifier": "I12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8572,14 +8572,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", "device control aggregate document": { "device control document": [ { @@ -8591,22 +8585,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_588", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I13", "location identifier": "I13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8614,14 +8614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", "device control aggregate document": { "device control document": [ { @@ -8633,22 +8627,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_589", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I14", "location identifier": "I14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8656,14 +8656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", "device control aggregate document": { "device control document": [ { @@ -8675,22 +8669,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_590", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I15", "location identifier": "I15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8698,14 +8698,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", "device control aggregate document": { "device control document": [ { @@ -8717,22 +8711,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_591", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I16", "location identifier": "I16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8740,14 +8740,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", "device control aggregate document": { "device control document": [ { @@ -8759,22 +8753,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_592", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I17", "location identifier": "I17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8782,14 +8782,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", "device control aggregate document": { "device control document": [ { @@ -8801,22 +8795,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_593", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I18", "location identifier": "I18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8824,14 +8824,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", "device control aggregate document": { "device control document": [ { @@ -8843,22 +8837,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_594", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I19", "location identifier": "I19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8866,14 +8866,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", "device control aggregate document": { "device control document": [ { @@ -8885,22 +8879,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_595", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I20", "location identifier": "I20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8908,14 +8908,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", "device control aggregate document": { "device control document": [ { @@ -8927,22 +8921,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_596", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I21", "location identifier": "I21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8950,14 +8950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", "device control aggregate document": { "device control document": [ { @@ -8969,22 +8963,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_597", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I22", "location identifier": "I22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -8992,14 +8992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", "device control aggregate document": { "device control document": [ { @@ -9011,22 +9005,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_598", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I23", "location identifier": "I23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9034,14 +9034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", "device control aggregate document": { "device control document": [ { @@ -9053,22 +9047,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_599", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM I24", "location identifier": "I24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9076,14 +9076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", "device control aggregate document": { "device control document": [ { @@ -9095,22 +9089,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_600", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J1", "location identifier": "J1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9118,14 +9118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", "device control aggregate document": { "device control document": [ { @@ -9137,22 +9131,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_601", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J2", "location identifier": "J2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9160,14 +9160,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", "device control aggregate document": { "device control document": [ { @@ -9179,22 +9173,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_602", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J3", "location identifier": "J3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9202,14 +9202,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", "device control aggregate document": { "device control document": [ { @@ -9221,22 +9215,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_603", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J4", "location identifier": "J4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9244,14 +9244,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", "device control aggregate document": { "device control document": [ { @@ -9263,37 +9257,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_604", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J5", "location identifier": "J5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", "device control aggregate document": { "device control document": [ { @@ -9305,22 +9299,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_605", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J6", "location identifier": "J6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9328,14 +9328,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", "device control aggregate document": { "device control document": [ { @@ -9347,22 +9341,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_606", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J7", "location identifier": "J7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9370,14 +9370,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", "device control aggregate document": { "device control document": [ { @@ -9389,22 +9383,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_607", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J8", "location identifier": "J8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9412,14 +9412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", "device control aggregate document": { "device control document": [ { @@ -9431,22 +9425,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_608", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J9", "location identifier": "J9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9454,14 +9454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", "device control aggregate document": { "device control document": [ { @@ -9473,22 +9467,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_609", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J10", "location identifier": "J10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9496,14 +9496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", "device control aggregate document": { "device control document": [ { @@ -9515,22 +9509,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_610", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J11", "location identifier": "J11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9538,14 +9538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", "device control aggregate document": { "device control document": [ { @@ -9557,22 +9551,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_611", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J12", "location identifier": "J12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9580,14 +9580,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", "device control aggregate document": { "device control document": [ { @@ -9599,22 +9593,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_612", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J13", "location identifier": "J13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9622,14 +9622,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", "device control aggregate document": { "device control document": [ { @@ -9641,22 +9635,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_613", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J14", "location identifier": "J14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9664,14 +9664,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", "device control aggregate document": { "device control document": [ { @@ -9683,22 +9677,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_614", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J15", "location identifier": "J15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9706,14 +9706,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", "device control aggregate document": { "device control document": [ { @@ -9725,22 +9719,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_615", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J16", "location identifier": "J16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9748,14 +9748,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", "device control aggregate document": { "device control document": [ { @@ -9767,22 +9761,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_616", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J17", "location identifier": "J17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9790,14 +9790,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", "device control aggregate document": { "device control document": [ { @@ -9809,22 +9803,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_617", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J18", "location identifier": "J18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9832,14 +9832,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", "device control aggregate document": { "device control document": [ { @@ -9851,22 +9845,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_618", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J19", "location identifier": "J19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9874,14 +9874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", "device control aggregate document": { "device control document": [ { @@ -9893,22 +9887,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_619", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J20", "location identifier": "J20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9916,14 +9916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", "device control aggregate document": { "device control document": [ { @@ -9935,22 +9929,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_620", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J21", "location identifier": "J21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -9958,14 +9958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", "device control aggregate document": { "device control document": [ { @@ -9977,22 +9971,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_621", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J22", "location identifier": "J22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10000,14 +10000,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", "device control aggregate document": { "device control document": [ { @@ -10019,22 +10013,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_622", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J23", "location identifier": "J23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10042,14 +10042,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", "device control aggregate document": { "device control document": [ { @@ -10061,22 +10055,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_623", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM J24", "location identifier": "J24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10084,14 +10084,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", "device control aggregate document": { "device control document": [ { @@ -10103,22 +10097,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_624", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K1", "location identifier": "K1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10126,14 +10126,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", "device control aggregate document": { "device control document": [ { @@ -10145,22 +10139,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_625", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K2", "location identifier": "K2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10168,14 +10168,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", "device control aggregate document": { "device control document": [ { @@ -10187,22 +10181,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_626", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K3", "location identifier": "K3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10210,14 +10210,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", "device control aggregate document": { "device control document": [ { @@ -10229,22 +10223,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_627", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K4", "location identifier": "K4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10252,14 +10252,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", "device control aggregate document": { "device control document": [ { @@ -10271,22 +10265,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_628", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K5", "location identifier": "K5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10294,14 +10294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", "device control aggregate document": { "device control document": [ { @@ -10313,22 +10307,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_629", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K6", "location identifier": "K6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10336,14 +10336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", "device control aggregate document": { "device control document": [ { @@ -10355,22 +10349,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_630", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K7", "location identifier": "K7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10378,14 +10378,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", "device control aggregate document": { "device control document": [ { @@ -10397,22 +10391,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_631", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K8", "location identifier": "K8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10420,14 +10420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", "device control aggregate document": { "device control document": [ { @@ -10439,22 +10433,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_632", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K9", "location identifier": "K9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10462,14 +10462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", "device control aggregate document": { "device control document": [ { @@ -10481,22 +10475,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_633", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K10", "location identifier": "K10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10504,14 +10504,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", "device control aggregate document": { "device control document": [ { @@ -10523,22 +10517,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_634", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K11", "location identifier": "K11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10546,14 +10546,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", "device control aggregate document": { "device control document": [ { @@ -10565,22 +10559,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_635", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K12", "location identifier": "K12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10588,14 +10588,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", "device control aggregate document": { "device control document": [ { @@ -10607,22 +10601,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_636", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K13", "location identifier": "K13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10630,14 +10630,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", "device control aggregate document": { "device control document": [ { @@ -10649,22 +10643,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_637", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K14", "location identifier": "K14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10672,14 +10672,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", "device control aggregate document": { "device control document": [ { @@ -10691,22 +10685,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_638", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K15", "location identifier": "K15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10714,14 +10714,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", "device control aggregate document": { "device control document": [ { @@ -10733,22 +10727,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_639", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K16", "location identifier": "K16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10756,14 +10756,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", "device control aggregate document": { "device control document": [ { @@ -10775,22 +10769,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_640", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K17", "location identifier": "K17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10798,14 +10798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", "device control aggregate document": { "device control document": [ { @@ -10817,22 +10811,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_641", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K18", "location identifier": "K18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10840,14 +10840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", "device control aggregate document": { "device control document": [ { @@ -10859,22 +10853,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_642", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K19", "location identifier": "K19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10882,14 +10882,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", "device control aggregate document": { "device control document": [ { @@ -10901,22 +10895,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_643", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K20", "location identifier": "K20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10924,14 +10924,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "device control aggregate document": { "device control document": [ { @@ -10943,22 +10937,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K21", "location identifier": "K21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -10966,14 +10966,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", "device control aggregate document": { "device control document": [ { @@ -10985,22 +10979,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_645", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K22", "location identifier": "K22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11008,14 +11008,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", "device control aggregate document": { "device control document": [ { @@ -11027,22 +11021,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_646", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K23", "location identifier": "K23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11050,14 +11050,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", "device control aggregate document": { "device control document": [ { @@ -11069,22 +11063,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_647", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM K24", "location identifier": "K24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11092,14 +11092,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", "device control aggregate document": { "device control document": [ { @@ -11111,22 +11105,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_648", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L1", "location identifier": "L1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11134,14 +11134,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", "device control aggregate document": { "device control document": [ { @@ -11153,22 +11147,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_649", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L2", "location identifier": "L2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11176,14 +11176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", "device control aggregate document": { "device control document": [ { @@ -11195,22 +11189,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_650", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L3", "location identifier": "L3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11218,14 +11218,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", "device control aggregate document": { "device control document": [ { @@ -11237,22 +11231,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_651", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L4", "location identifier": "L4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11260,14 +11260,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", "device control aggregate document": { "device control document": [ { @@ -11279,22 +11273,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_652", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L5", "location identifier": "L5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11302,14 +11302,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", "device control aggregate document": { "device control document": [ { @@ -11321,22 +11315,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_653", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L6", "location identifier": "L6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11344,14 +11344,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", "device control aggregate document": { "device control document": [ { @@ -11363,22 +11357,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_654", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L7", "location identifier": "L7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11386,14 +11386,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", "device control aggregate document": { "device control document": [ { @@ -11405,37 +11399,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_655", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L8", "location identifier": "L8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", "device control aggregate document": { "device control document": [ { @@ -11447,22 +11441,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_656", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L9", "location identifier": "L9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11470,14 +11470,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", "device control aggregate document": { "device control document": [ { @@ -11489,22 +11483,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_657", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L10", "location identifier": "L10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11512,14 +11512,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", "device control aggregate document": { "device control document": [ { @@ -11531,22 +11525,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_658", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L11", "location identifier": "L11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11554,14 +11554,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", "device control aggregate document": { "device control document": [ { @@ -11573,22 +11567,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_659", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L12", "location identifier": "L12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11596,14 +11596,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", "device control aggregate document": { "device control document": [ { @@ -11615,22 +11609,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_660", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L13", "location identifier": "L13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11638,14 +11638,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", "device control aggregate document": { "device control document": [ { @@ -11657,22 +11651,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_661", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L14", "location identifier": "L14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11680,14 +11680,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", "device control aggregate document": { "device control document": [ { @@ -11699,22 +11693,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_662", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L15", "location identifier": "L15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11722,14 +11722,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", "device control aggregate document": { "device control document": [ { @@ -11741,22 +11735,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_663", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L16", "location identifier": "L16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11764,14 +11764,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", "device control aggregate document": { "device control document": [ { @@ -11783,22 +11777,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_664", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L17", "location identifier": "L17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11806,14 +11806,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", "device control aggregate document": { "device control document": [ { @@ -11825,22 +11819,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_665", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L18", "location identifier": "L18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11848,14 +11848,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", "device control aggregate document": { "device control document": [ { @@ -11867,22 +11861,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_666", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L19", "location identifier": "L19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11890,14 +11890,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", "device control aggregate document": { "device control document": [ { @@ -11909,22 +11903,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_667", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L20", "location identifier": "L20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11932,14 +11932,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", "device control aggregate document": { "device control document": [ { @@ -11951,22 +11945,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_668", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L21", "location identifier": "L21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -11974,14 +11974,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", "device control aggregate document": { "device control document": [ { @@ -11993,22 +11987,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_669", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L22", "location identifier": "L22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12016,14 +12016,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", "device control aggregate document": { "device control document": [ { @@ -12035,22 +12029,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_670", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L23", "location identifier": "L23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12058,14 +12058,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", "device control aggregate document": { "device control document": [ { @@ -12077,22 +12071,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_671", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM L24", "location identifier": "L24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12100,14 +12100,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", "device control aggregate document": { "device control document": [ { @@ -12119,22 +12113,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_672", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M1", "location identifier": "M1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12142,14 +12142,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", "device control aggregate document": { "device control document": [ { @@ -12161,22 +12155,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_673", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M2", "location identifier": "M2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12184,14 +12184,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", "device control aggregate document": { "device control document": [ { @@ -12203,22 +12197,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_674", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M3", "location identifier": "M3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12226,14 +12226,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", "device control aggregate document": { "device control document": [ { @@ -12245,22 +12239,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_675", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M4", "location identifier": "M4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12268,14 +12268,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", "device control aggregate document": { "device control document": [ { @@ -12287,22 +12281,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_676", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M5", "location identifier": "M5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12310,14 +12310,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", "device control aggregate document": { "device control document": [ { @@ -12329,22 +12323,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_677", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M6", "location identifier": "M6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12352,14 +12352,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", "device control aggregate document": { "device control document": [ { @@ -12371,22 +12365,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_678", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M7", "location identifier": "M7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12394,14 +12394,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", "device control aggregate document": { "device control document": [ { @@ -12413,22 +12407,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_679", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M8", "location identifier": "M8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12436,14 +12436,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", "device control aggregate document": { "device control document": [ { @@ -12455,22 +12449,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_680", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M9", "location identifier": "M9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12478,14 +12478,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", "device control aggregate document": { "device control document": [ { @@ -12497,22 +12491,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_681", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M10", "location identifier": "M10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12520,14 +12520,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", "device control aggregate document": { "device control document": [ { @@ -12539,22 +12533,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_682", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M11", "location identifier": "M11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12562,14 +12562,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", "device control aggregate document": { "device control document": [ { @@ -12581,22 +12575,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_683", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M12", "location identifier": "M12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12604,14 +12604,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", "device control aggregate document": { "device control document": [ { @@ -12623,22 +12617,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_684", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M13", "location identifier": "M13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12646,14 +12646,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", "device control aggregate document": { "device control document": [ { @@ -12665,22 +12659,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_685", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M14", "location identifier": "M14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12688,14 +12688,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", "device control aggregate document": { "device control document": [ { @@ -12707,22 +12701,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_686", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M15", "location identifier": "M15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12730,14 +12730,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", "device control aggregate document": { "device control document": [ { @@ -12749,22 +12743,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_687", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M16", "location identifier": "M16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12772,14 +12772,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", "device control aggregate document": { "device control document": [ { @@ -12791,22 +12785,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_688", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M17", "location identifier": "M17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12814,14 +12814,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", "device control aggregate document": { "device control document": [ { @@ -12833,22 +12827,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_689", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M18", "location identifier": "M18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12856,14 +12856,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", "device control aggregate document": { "device control document": [ { @@ -12875,22 +12869,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_690", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M19", "location identifier": "M19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12898,14 +12898,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", "device control aggregate document": { "device control document": [ { @@ -12917,22 +12911,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_691", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M20", "location identifier": "M20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12940,14 +12940,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", "device control aggregate document": { "device control document": [ { @@ -12959,22 +12953,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_692", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M21", "location identifier": "M21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -12982,14 +12982,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", "device control aggregate document": { "device control document": [ { @@ -13001,22 +12995,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_693", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M22", "location identifier": "M22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13024,14 +13024,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", "device control aggregate document": { "device control document": [ { @@ -13043,22 +13037,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_694", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M23", "location identifier": "M23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13066,14 +13066,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", "device control aggregate document": { "device control document": [ { @@ -13085,22 +13079,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_695", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM M24", "location identifier": "M24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13108,14 +13108,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", "device control aggregate document": { "device control document": [ { @@ -13127,22 +13121,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_696", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N1", "location identifier": "N1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13150,14 +13150,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", "device control aggregate document": { "device control document": [ { @@ -13169,22 +13163,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_697", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N2", "location identifier": "N2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13192,14 +13192,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", "device control aggregate document": { "device control document": [ { @@ -13211,22 +13205,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_698", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N3", "location identifier": "N3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13234,14 +13234,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", "device control aggregate document": { "device control document": [ { @@ -13253,22 +13247,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_699", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N4", "location identifier": "N4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13276,14 +13276,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", "device control aggregate document": { "device control document": [ { @@ -13295,22 +13289,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_700", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N5", "location identifier": "N5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13318,14 +13318,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", "device control aggregate document": { "device control document": [ { @@ -13337,22 +13331,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_701", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N6", "location identifier": "N6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13360,14 +13360,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", "device control aggregate document": { "device control document": [ { @@ -13379,22 +13373,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_702", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N7", "location identifier": "N7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13402,14 +13402,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", "device control aggregate document": { "device control document": [ { @@ -13421,22 +13415,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_703", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N8", "location identifier": "N8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13444,14 +13444,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", "device control aggregate document": { "device control document": [ { @@ -13463,22 +13457,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_704", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N9", "location identifier": "N9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13486,14 +13486,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", "device control aggregate document": { "device control document": [ { @@ -13505,22 +13499,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_705", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N10", "location identifier": "N10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13528,14 +13528,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", "device control aggregate document": { "device control document": [ { @@ -13547,37 +13541,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_706", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N11", "location identifier": "N11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", "device control aggregate document": { "device control document": [ { @@ -13589,22 +13583,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_707", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N12", "location identifier": "N12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13612,14 +13612,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", "device control aggregate document": { "device control document": [ { @@ -13631,22 +13625,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_708", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N13", "location identifier": "N13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13654,14 +13654,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", "device control aggregate document": { "device control document": [ { @@ -13673,22 +13667,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_709", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N14", "location identifier": "N14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13696,14 +13696,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", "device control aggregate document": { "device control document": [ { @@ -13715,22 +13709,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_710", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N15", "location identifier": "N15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13738,14 +13738,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", "device control aggregate document": { "device control document": [ { @@ -13757,22 +13751,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_711", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N16", "location identifier": "N16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13780,14 +13780,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", "device control aggregate document": { "device control document": [ { @@ -13799,22 +13793,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_712", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N17", "location identifier": "N17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13822,14 +13822,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", "device control aggregate document": { "device control document": [ { @@ -13841,22 +13835,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_713", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N18", "location identifier": "N18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13864,14 +13864,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", "device control aggregate document": { "device control document": [ { @@ -13883,22 +13877,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_714", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N19", "location identifier": "N19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13906,14 +13906,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", "device control aggregate document": { "device control document": [ { @@ -13925,22 +13919,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_715", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N20", "location identifier": "N20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13948,14 +13948,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", "device control aggregate document": { "device control document": [ { @@ -13967,22 +13961,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_716", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N21", "location identifier": "N21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -13990,14 +13990,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", "device control aggregate document": { "device control document": [ { @@ -14009,22 +14003,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_717", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N22", "location identifier": "N22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14032,14 +14032,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", "device control aggregate document": { "device control document": [ { @@ -14051,22 +14045,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_718", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N23", "location identifier": "N23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14074,14 +14074,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", "device control aggregate document": { "device control document": [ { @@ -14093,22 +14087,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_719", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM N24", "location identifier": "N24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14116,14 +14116,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", "device control aggregate document": { "device control document": [ { @@ -14135,22 +14129,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_720", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O1", "location identifier": "O1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14158,14 +14158,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", "device control aggregate document": { "device control document": [ { @@ -14177,22 +14171,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_721", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O2", "location identifier": "O2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14200,14 +14200,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", "device control aggregate document": { "device control document": [ { @@ -14219,22 +14213,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_722", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O3", "location identifier": "O3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14242,14 +14242,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", "device control aggregate document": { "device control document": [ { @@ -14261,22 +14255,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_723", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O4", "location identifier": "O4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14284,14 +14284,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", "device control aggregate document": { "device control document": [ { @@ -14303,22 +14297,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_724", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O5", "location identifier": "O5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14326,14 +14326,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", "device control aggregate document": { "device control document": [ { @@ -14345,22 +14339,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_725", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O6", "location identifier": "O6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14368,14 +14368,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", "device control aggregate document": { "device control document": [ { @@ -14387,22 +14381,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_726", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O7", "location identifier": "O7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14410,14 +14410,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", "device control aggregate document": { "device control document": [ { @@ -14429,22 +14423,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_727", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O8", "location identifier": "O8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14452,14 +14452,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", "device control aggregate document": { "device control document": [ { @@ -14471,22 +14465,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_728", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O9", "location identifier": "O9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14494,14 +14494,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", "device control aggregate document": { "device control document": [ { @@ -14513,22 +14507,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_729", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O10", "location identifier": "O10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14536,14 +14536,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", "device control aggregate document": { "device control document": [ { @@ -14555,22 +14549,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_730", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O11", "location identifier": "O11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14578,14 +14578,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", "device control aggregate document": { "device control document": [ { @@ -14597,22 +14591,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_731", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O12", "location identifier": "O12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14620,14 +14620,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", "device control aggregate document": { "device control document": [ { @@ -14639,22 +14633,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_732", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O13", "location identifier": "O13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14662,14 +14662,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", "device control aggregate document": { "device control document": [ { @@ -14681,22 +14675,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_733", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O14", "location identifier": "O14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14704,14 +14704,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", "device control aggregate document": { "device control document": [ { @@ -14723,22 +14717,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_734", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O15", "location identifier": "O15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14746,14 +14746,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", "device control aggregate document": { "device control document": [ { @@ -14765,22 +14759,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_735", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O16", "location identifier": "O16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14788,14 +14788,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", "device control aggregate document": { "device control document": [ { @@ -14807,22 +14801,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_736", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O17", "location identifier": "O17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14830,14 +14830,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", "device control aggregate document": { "device control document": [ { @@ -14849,22 +14843,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_737", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O18", "location identifier": "O18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14872,14 +14872,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", "device control aggregate document": { "device control document": [ { @@ -14891,22 +14885,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_738", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O19", "location identifier": "O19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14914,14 +14914,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", "device control aggregate document": { "device control document": [ { @@ -14933,22 +14927,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_739", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O20", "location identifier": "O20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14956,14 +14956,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", "device control aggregate document": { "device control document": [ { @@ -14975,22 +14969,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_740", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O21", "location identifier": "O21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -14998,14 +14998,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", "device control aggregate document": { "device control document": [ { @@ -15017,22 +15011,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_741", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O22", "location identifier": "O22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15040,14 +15040,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", "device control aggregate document": { "device control document": [ { @@ -15059,22 +15053,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_742", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O23", "location identifier": "O23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15082,14 +15082,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", "device control aggregate document": { "device control document": [ { @@ -15101,22 +15095,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_743", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM O24", "location identifier": "O24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15124,14 +15124,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", "device control aggregate document": { "device control document": [ { @@ -15143,22 +15137,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_744", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P1", "location identifier": "P1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15166,14 +15166,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", "device control aggregate document": { "device control document": [ { @@ -15185,22 +15179,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_745", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P2", "location identifier": "P2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15208,14 +15208,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", "device control aggregate document": { "device control document": [ { @@ -15227,22 +15221,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_746", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P3", "location identifier": "P3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15250,14 +15250,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", "device control aggregate document": { "device control document": [ { @@ -15269,22 +15263,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_747", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P4", "location identifier": "P4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15292,14 +15292,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", "device control aggregate document": { "device control document": [ { @@ -15311,22 +15305,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_748", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P5", "location identifier": "P5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15334,14 +15334,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", "device control aggregate document": { "device control document": [ { @@ -15353,22 +15347,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_749", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P6", "location identifier": "P6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15376,14 +15376,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", "device control aggregate document": { "device control document": [ { @@ -15395,22 +15389,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_750", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P7", "location identifier": "P7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15418,14 +15418,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", "device control aggregate document": { "device control document": [ { @@ -15437,22 +15431,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_751", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P8", "location identifier": "P8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15460,14 +15460,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", "device control aggregate document": { "device control document": [ { @@ -15479,22 +15473,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_752", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P9", "location identifier": "P9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15502,14 +15502,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", "device control aggregate document": { "device control document": [ { @@ -15521,22 +15515,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_753", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P10", "location identifier": "P10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15544,14 +15544,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", "device control aggregate document": { "device control document": [ { @@ -15563,22 +15557,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_754", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P11", "location identifier": "P11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15586,14 +15586,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", "device control aggregate document": { "device control document": [ { @@ -15605,22 +15599,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_755", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P12", "location identifier": "P12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15628,14 +15628,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", "device control aggregate document": { "device control document": [ { @@ -15647,22 +15641,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_756", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P13", "location identifier": "P13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15670,14 +15670,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", "device control aggregate document": { "device control document": [ { @@ -15689,37 +15683,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_757", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P14", "location identifier": "P14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", "device control aggregate document": { "device control document": [ { @@ -15731,22 +15725,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_758", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P15", "location identifier": "P15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15754,14 +15754,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", "device control aggregate document": { "device control document": [ { @@ -15773,22 +15767,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_759", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P16", "location identifier": "P16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15796,14 +15796,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", "device control aggregate document": { "device control document": [ { @@ -15815,22 +15809,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_760", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P17", "location identifier": "P17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15838,14 +15838,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", "device control aggregate document": { "device control document": [ { @@ -15857,22 +15851,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_761", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P18", "location identifier": "P18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15880,14 +15880,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", "device control aggregate document": { "device control document": [ { @@ -15899,22 +15893,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_762", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P19", "location identifier": "P19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15922,14 +15922,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", "device control aggregate document": { "device control document": [ { @@ -15941,22 +15935,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_763", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P20", "location identifier": "P20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -15964,14 +15964,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", "device control aggregate document": { "device control document": [ { @@ -15983,22 +15977,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_764", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P21", "location identifier": "P21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16006,14 +16006,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", "device control aggregate document": { "device control document": [ { @@ -16025,22 +16019,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_765", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P22", "location identifier": "P22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16048,14 +16048,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", "device control aggregate document": { "device control document": [ { @@ -16067,22 +16061,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_766", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P23", "location identifier": "P23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16090,14 +16090,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", "device control aggregate document": { "device control document": [ { @@ -16109,22 +16103,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_767", "sample document": { "sample identifier": "8/22/2023 11:01:43 AM P24", "location identifier": "P24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 11:01:43 AM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.47, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16132,14 +16132,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1152", "device control aggregate document": { "device control document": [ { @@ -16151,22 +16145,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1152", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A1", "location identifier": "A1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16174,14 +16174,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1153", "device control aggregate document": { "device control document": [ { @@ -16193,22 +16187,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1153", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A2", "location identifier": "A2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16216,14 +16216,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1154", "device control aggregate document": { "device control document": [ { @@ -16235,22 +16229,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1154", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A3", "location identifier": "A3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16258,14 +16258,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1155", "device control aggregate document": { "device control document": [ { @@ -16277,22 +16271,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1155", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A4", "location identifier": "A4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16300,14 +16300,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1156", "device control aggregate document": { "device control document": [ { @@ -16319,22 +16313,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1156", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A5", "location identifier": "A5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16342,14 +16342,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1157", "device control aggregate document": { "device control document": [ { @@ -16361,22 +16355,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1157", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A6", "location identifier": "A6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16384,14 +16384,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1158", "device control aggregate document": { "device control document": [ { @@ -16403,22 +16397,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1158", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A7", "location identifier": "A7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16426,14 +16426,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1159", "device control aggregate document": { "device control document": [ { @@ -16445,22 +16439,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1159", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A8", "location identifier": "A8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16468,14 +16468,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1160", "device control aggregate document": { "device control document": [ { @@ -16487,22 +16481,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1160", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A9", "location identifier": "A9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16510,14 +16510,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1161", "device control aggregate document": { "device control document": [ { @@ -16529,22 +16523,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1161", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A10", "location identifier": "A10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16552,14 +16552,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1162", "device control aggregate document": { "device control document": [ { @@ -16571,22 +16565,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1162", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A11", "location identifier": "A11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16594,14 +16594,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1163", "device control aggregate document": { "device control document": [ { @@ -16613,22 +16607,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1163", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A12", "location identifier": "A12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16636,14 +16636,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1164", "device control aggregate document": { "device control document": [ { @@ -16655,22 +16649,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1164", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A13", "location identifier": "A13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16678,14 +16678,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1165", "device control aggregate document": { "device control document": [ { @@ -16697,22 +16691,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1165", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A14", "location identifier": "A14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16720,14 +16720,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1166", "device control aggregate document": { "device control document": [ { @@ -16739,22 +16733,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1166", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A15", "location identifier": "A15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16762,14 +16762,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1167", "device control aggregate document": { "device control document": [ { @@ -16781,22 +16775,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1167", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A16", "location identifier": "A16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16804,14 +16804,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1168", "device control aggregate document": { "device control document": [ { @@ -16823,22 +16817,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1168", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A17", "location identifier": "A17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16846,14 +16846,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1169", "device control aggregate document": { "device control document": [ { @@ -16865,22 +16859,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1169", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A18", "location identifier": "A18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16888,14 +16888,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1170", "device control aggregate document": { "device control document": [ { @@ -16907,22 +16901,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1170", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A19", "location identifier": "A19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16930,14 +16930,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1171", "device control aggregate document": { "device control document": [ { @@ -16949,22 +16943,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1171", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A20", "location identifier": "A20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -16972,14 +16972,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1172", "device control aggregate document": { "device control document": [ { @@ -16991,22 +16985,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1172", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A21", "location identifier": "A21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17014,14 +17014,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1173", "device control aggregate document": { "device control document": [ { @@ -17033,22 +17027,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1173", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A22", "location identifier": "A22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17056,14 +17056,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1174", "device control aggregate document": { "device control document": [ { @@ -17075,22 +17069,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1174", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A23", "location identifier": "A23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17098,14 +17098,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1175", "device control aggregate document": { "device control document": [ { @@ -17117,22 +17111,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1175", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM A24", "location identifier": "A24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17140,14 +17140,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1176", "device control aggregate document": { "device control document": [ { @@ -17159,22 +17153,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1176", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B1", "location identifier": "B1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17182,14 +17182,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1177", "device control aggregate document": { "device control document": [ { @@ -17201,22 +17195,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1177", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B2", "location identifier": "B2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17224,14 +17224,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1178", "device control aggregate document": { "device control document": [ { @@ -17243,22 +17237,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1178", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B3", "location identifier": "B3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17266,14 +17266,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1179", "device control aggregate document": { "device control document": [ { @@ -17285,22 +17279,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1179", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B4", "location identifier": "B4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17308,14 +17308,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1180", "device control aggregate document": { "device control document": [ { @@ -17327,22 +17321,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1180", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B5", "location identifier": "B5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17350,14 +17350,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1181", "device control aggregate document": { "device control document": [ { @@ -17369,22 +17363,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1181", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B6", "location identifier": "B6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17392,14 +17392,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1182", "device control aggregate document": { "device control document": [ { @@ -17411,22 +17405,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1182", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B7", "location identifier": "B7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17434,14 +17434,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1183", "device control aggregate document": { "device control document": [ { @@ -17453,22 +17447,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1183", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B8", "location identifier": "B8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17476,14 +17476,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1184", "device control aggregate document": { "device control document": [ { @@ -17495,22 +17489,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1184", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B9", "location identifier": "B9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17518,14 +17518,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1185", "device control aggregate document": { "device control document": [ { @@ -17537,22 +17531,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1185", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B10", "location identifier": "B10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17560,14 +17560,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1186", "device control aggregate document": { "device control document": [ { @@ -17579,22 +17573,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1186", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B11", "location identifier": "B11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17602,14 +17602,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1187", "device control aggregate document": { "device control document": [ { @@ -17621,22 +17615,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1187", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B12", "location identifier": "B12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17644,14 +17644,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1188", "device control aggregate document": { "device control document": [ { @@ -17663,22 +17657,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1188", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B13", "location identifier": "B13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17686,14 +17686,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1189", "device control aggregate document": { "device control document": [ { @@ -17705,22 +17699,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1189", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B14", "location identifier": "B14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17728,14 +17728,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1190", "device control aggregate document": { "device control document": [ { @@ -17747,22 +17741,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1190", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B15", "location identifier": "B15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17770,14 +17770,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1191", "device control aggregate document": { "device control document": [ { @@ -17789,22 +17783,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1191", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B16", "location identifier": "B16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17812,14 +17812,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1192", "device control aggregate document": { "device control document": [ { @@ -17831,37 +17825,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1192", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B17", "location identifier": "B17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1193", "device control aggregate document": { "device control document": [ { @@ -17873,22 +17867,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1193", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B18", "location identifier": "B18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17896,14 +17896,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1194", "device control aggregate document": { "device control document": [ { @@ -17915,22 +17909,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1194", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B19", "location identifier": "B19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17938,14 +17938,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1195", "device control aggregate document": { "device control document": [ { @@ -17957,22 +17951,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1195", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B20", "location identifier": "B20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -17980,14 +17980,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1196", "device control aggregate document": { "device control document": [ { @@ -17999,22 +17993,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1196", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B21", "location identifier": "B21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18022,14 +18022,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1197", "device control aggregate document": { "device control document": [ { @@ -18041,22 +18035,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1197", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B22", "location identifier": "B22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18064,14 +18064,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "device control aggregate document": { "device control document": [ { @@ -18083,22 +18077,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B23", "location identifier": "B23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18106,14 +18106,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1199", "device control aggregate document": { "device control document": [ { @@ -18125,22 +18119,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1199", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM B24", "location identifier": "B24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18148,14 +18148,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1200", "device control aggregate document": { "device control document": [ { @@ -18167,22 +18161,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1200", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C1", "location identifier": "C1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18190,14 +18190,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1201", "device control aggregate document": { "device control document": [ { @@ -18209,22 +18203,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1201", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C2", "location identifier": "C2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18232,14 +18232,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1202", "device control aggregate document": { "device control document": [ { @@ -18251,22 +18245,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1202", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C3", "location identifier": "C3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18274,14 +18274,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1203", "device control aggregate document": { "device control document": [ { @@ -18293,22 +18287,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1203", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C4", "location identifier": "C4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18316,14 +18316,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1204", "device control aggregate document": { "device control document": [ { @@ -18335,22 +18329,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1204", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C5", "location identifier": "C5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18358,14 +18358,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1205", "device control aggregate document": { "device control document": [ { @@ -18377,22 +18371,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1205", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C6", "location identifier": "C6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18400,14 +18400,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1206", "device control aggregate document": { "device control document": [ { @@ -18419,22 +18413,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1206", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C7", "location identifier": "C7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18442,14 +18442,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1207", "device control aggregate document": { "device control document": [ { @@ -18461,22 +18455,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1207", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C8", "location identifier": "C8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18484,14 +18484,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1208", "device control aggregate document": { "device control document": [ { @@ -18503,22 +18497,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1208", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C9", "location identifier": "C9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18526,14 +18526,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1209", "device control aggregate document": { "device control document": [ { @@ -18545,22 +18539,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1209", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C10", "location identifier": "C10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18568,14 +18568,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1210", "device control aggregate document": { "device control document": [ { @@ -18587,22 +18581,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1210", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C11", "location identifier": "C11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18610,14 +18610,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1211", "device control aggregate document": { "device control document": [ { @@ -18629,22 +18623,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1211", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C12", "location identifier": "C12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18652,14 +18652,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1212", "device control aggregate document": { "device control document": [ { @@ -18671,22 +18665,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1212", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C13", "location identifier": "C13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18694,14 +18694,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1213", "device control aggregate document": { "device control document": [ { @@ -18713,22 +18707,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1213", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C14", "location identifier": "C14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18736,14 +18736,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1214", "device control aggregate document": { "device control document": [ { @@ -18755,22 +18749,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1214", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C15", "location identifier": "C15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18778,14 +18778,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1215", "device control aggregate document": { "device control document": [ { @@ -18797,22 +18791,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1215", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C16", "location identifier": "C16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18820,14 +18820,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1216", "device control aggregate document": { "device control document": [ { @@ -18839,22 +18833,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1216", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C17", "location identifier": "C17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18862,14 +18862,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1217", "device control aggregate document": { "device control document": [ { @@ -18881,22 +18875,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1217", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C18", "location identifier": "C18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18904,14 +18904,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1218", "device control aggregate document": { "device control document": [ { @@ -18923,22 +18917,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1218", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C19", "location identifier": "C19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18946,14 +18946,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1219", "device control aggregate document": { "device control document": [ { @@ -18965,22 +18959,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1219", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C20", "location identifier": "C20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -18988,14 +18988,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1220", "device control aggregate document": { "device control document": [ { @@ -19007,22 +19001,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1220", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C21", "location identifier": "C21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19030,14 +19030,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1221", "device control aggregate document": { "device control document": [ { @@ -19049,22 +19043,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1221", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C22", "location identifier": "C22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19072,14 +19072,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1222", "device control aggregate document": { "device control document": [ { @@ -19091,22 +19085,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1222", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C23", "location identifier": "C23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19114,14 +19114,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1223", "device control aggregate document": { "device control document": [ { @@ -19133,22 +19127,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1223", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM C24", "location identifier": "C24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19156,14 +19156,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1224", "device control aggregate document": { "device control document": [ { @@ -19175,22 +19169,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1224", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D1", "location identifier": "D1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19198,14 +19198,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1225", "device control aggregate document": { "device control document": [ { @@ -19217,22 +19211,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1225", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D2", "location identifier": "D2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19240,14 +19240,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1226", "device control aggregate document": { "device control document": [ { @@ -19259,22 +19253,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1226", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D3", "location identifier": "D3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19282,14 +19282,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1227", "device control aggregate document": { "device control document": [ { @@ -19301,22 +19295,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1227", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D4", "location identifier": "D4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19324,14 +19324,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1228", "device control aggregate document": { "device control document": [ { @@ -19343,22 +19337,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1228", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D5", "location identifier": "D5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19366,14 +19366,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1229", "device control aggregate document": { "device control document": [ { @@ -19385,22 +19379,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1229", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D6", "location identifier": "D6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19408,14 +19408,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1230", "device control aggregate document": { "device control document": [ { @@ -19427,22 +19421,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1230", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D7", "location identifier": "D7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19450,14 +19450,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1231", "device control aggregate document": { "device control document": [ { @@ -19469,22 +19463,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1231", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D8", "location identifier": "D8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19492,14 +19492,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1232", "device control aggregate document": { "device control document": [ { @@ -19511,22 +19505,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1232", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D9", "location identifier": "D9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19534,14 +19534,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1233", "device control aggregate document": { "device control document": [ { @@ -19553,22 +19547,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1233", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D10", "location identifier": "D10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19576,14 +19576,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1234", "device control aggregate document": { "device control document": [ { @@ -19595,22 +19589,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1234", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D11", "location identifier": "D11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19618,14 +19618,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1235", "device control aggregate document": { "device control document": [ { @@ -19637,22 +19631,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1235", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D12", "location identifier": "D12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19660,14 +19660,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1236", "device control aggregate document": { "device control document": [ { @@ -19679,22 +19673,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1236", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D13", "location identifier": "D13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19702,14 +19702,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1237", "device control aggregate document": { "device control document": [ { @@ -19721,22 +19715,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1237", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D14", "location identifier": "D14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19744,14 +19744,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1238", "device control aggregate document": { "device control document": [ { @@ -19763,22 +19757,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1238", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D15", "location identifier": "D15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19786,14 +19786,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1239", "device control aggregate document": { "device control document": [ { @@ -19805,22 +19799,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1239", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D16", "location identifier": "D16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19828,14 +19828,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1240", "device control aggregate document": { "device control document": [ { @@ -19847,22 +19841,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1240", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D17", "location identifier": "D17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19870,14 +19870,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1241", "device control aggregate document": { "device control document": [ { @@ -19889,22 +19883,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1241", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D18", "location identifier": "D18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19912,14 +19912,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1242", "device control aggregate document": { "device control document": [ { @@ -19931,22 +19925,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1242", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D19", "location identifier": "D19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -19954,14 +19954,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1243", "device control aggregate document": { "device control document": [ { @@ -19973,37 +19967,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1243", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D20", "location identifier": "D20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1244", "device control aggregate document": { "device control document": [ { @@ -20015,22 +20009,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1244", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D21", "location identifier": "D21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20038,14 +20038,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1245", "device control aggregate document": { "device control document": [ { @@ -20057,22 +20051,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1245", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D22", "location identifier": "D22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20080,14 +20080,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1246", "device control aggregate document": { "device control document": [ { @@ -20099,22 +20093,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1246", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D23", "location identifier": "D23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20122,14 +20122,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1247", "device control aggregate document": { "device control document": [ { @@ -20141,22 +20135,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1247", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM D24", "location identifier": "D24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20164,14 +20164,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1248", "device control aggregate document": { "device control document": [ { @@ -20183,22 +20177,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1248", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E1", "location identifier": "E1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20206,14 +20206,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1249", "device control aggregate document": { "device control document": [ { @@ -20225,22 +20219,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1249", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E2", "location identifier": "E2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20248,14 +20248,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1250", "device control aggregate document": { "device control document": [ { @@ -20267,22 +20261,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1250", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E3", "location identifier": "E3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20290,14 +20290,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1251", "device control aggregate document": { "device control document": [ { @@ -20309,22 +20303,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1251", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E4", "location identifier": "E4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20332,14 +20332,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1252", "device control aggregate document": { "device control document": [ { @@ -20351,22 +20345,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1252", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E5", "location identifier": "E5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20374,14 +20374,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1253", "device control aggregate document": { "device control document": [ { @@ -20393,22 +20387,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1253", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E6", "location identifier": "E6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20416,14 +20416,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1254", "device control aggregate document": { "device control document": [ { @@ -20435,22 +20429,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1254", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E7", "location identifier": "E7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20458,14 +20458,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1255", "device control aggregate document": { "device control document": [ { @@ -20477,22 +20471,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1255", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E8", "location identifier": "E8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20500,14 +20500,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1256", "device control aggregate document": { "device control document": [ { @@ -20519,22 +20513,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1256", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E9", "location identifier": "E9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20542,14 +20542,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1257", "device control aggregate document": { "device control document": [ { @@ -20561,22 +20555,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1257", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E10", "location identifier": "E10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20584,14 +20584,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1258", "device control aggregate document": { "device control document": [ { @@ -20603,22 +20597,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1258", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E11", "location identifier": "E11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20626,14 +20626,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1259", "device control aggregate document": { "device control document": [ { @@ -20645,22 +20639,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1259", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E12", "location identifier": "E12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20668,14 +20668,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1260", "device control aggregate document": { "device control document": [ { @@ -20687,22 +20681,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1260", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E13", "location identifier": "E13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20710,14 +20710,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1261", "device control aggregate document": { "device control document": [ { @@ -20729,22 +20723,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1261", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E14", "location identifier": "E14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20752,14 +20752,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1262", "device control aggregate document": { "device control document": [ { @@ -20771,22 +20765,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1262", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E15", "location identifier": "E15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20794,14 +20794,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1263", "device control aggregate document": { "device control document": [ { @@ -20813,22 +20807,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1263", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E16", "location identifier": "E16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20836,14 +20836,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1264", "device control aggregate document": { "device control document": [ { @@ -20855,22 +20849,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1264", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E17", "location identifier": "E17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20878,14 +20878,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1265", "device control aggregate document": { "device control document": [ { @@ -20897,22 +20891,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1265", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E18", "location identifier": "E18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20920,14 +20920,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1266", "device control aggregate document": { "device control document": [ { @@ -20939,22 +20933,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1266", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E19", "location identifier": "E19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -20962,14 +20962,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1267", "device control aggregate document": { "device control document": [ { @@ -20981,22 +20975,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1267", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E20", "location identifier": "E20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21004,14 +21004,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1268", "device control aggregate document": { "device control document": [ { @@ -21023,22 +21017,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1268", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E21", "location identifier": "E21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21046,14 +21046,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1269", "device control aggregate document": { "device control document": [ { @@ -21065,22 +21059,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1269", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E22", "location identifier": "E22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21088,14 +21088,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1270", "device control aggregate document": { "device control document": [ { @@ -21107,22 +21101,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1270", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E23", "location identifier": "E23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21130,14 +21130,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1271", "device control aggregate document": { "device control document": [ { @@ -21149,22 +21143,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1271", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM E24", "location identifier": "E24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21172,14 +21172,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1272", "device control aggregate document": { "device control document": [ { @@ -21191,22 +21185,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1272", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F1", "location identifier": "F1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21214,14 +21214,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1273", "device control aggregate document": { "device control document": [ { @@ -21233,22 +21227,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1273", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F2", "location identifier": "F2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21256,14 +21256,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1274", "device control aggregate document": { "device control document": [ { @@ -21275,22 +21269,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1274", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F3", "location identifier": "F3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21298,14 +21298,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1275", "device control aggregate document": { "device control document": [ { @@ -21317,22 +21311,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1275", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F4", "location identifier": "F4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21340,14 +21340,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1276", "device control aggregate document": { "device control document": [ { @@ -21359,22 +21353,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1276", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F5", "location identifier": "F5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21382,14 +21382,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1277", "device control aggregate document": { "device control document": [ { @@ -21401,22 +21395,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1277", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F6", "location identifier": "F6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21424,14 +21424,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1278", "device control aggregate document": { "device control document": [ { @@ -21443,22 +21437,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1278", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F7", "location identifier": "F7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21466,14 +21466,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1279", "device control aggregate document": { "device control document": [ { @@ -21485,22 +21479,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1279", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F8", "location identifier": "F8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21508,14 +21508,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1280", "device control aggregate document": { "device control document": [ { @@ -21527,22 +21521,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1280", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F9", "location identifier": "F9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21550,14 +21550,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1281", "device control aggregate document": { "device control document": [ { @@ -21569,22 +21563,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1281", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F10", "location identifier": "F10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21592,14 +21592,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1282", "device control aggregate document": { "device control document": [ { @@ -21611,22 +21605,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1282", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F11", "location identifier": "F11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21634,14 +21634,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1283", "device control aggregate document": { "device control document": [ { @@ -21653,22 +21647,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1283", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F12", "location identifier": "F12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21676,14 +21676,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1284", "device control aggregate document": { "device control document": [ { @@ -21695,22 +21689,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1284", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F13", "location identifier": "F13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21718,14 +21718,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1285", "device control aggregate document": { "device control document": [ { @@ -21737,22 +21731,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1285", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F14", "location identifier": "F14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21760,14 +21760,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1286", "device control aggregate document": { "device control document": [ { @@ -21779,22 +21773,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1286", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F15", "location identifier": "F15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21802,14 +21802,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1287", "device control aggregate document": { "device control document": [ { @@ -21821,22 +21815,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1287", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F16", "location identifier": "F16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21844,14 +21844,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1288", "device control aggregate document": { "device control document": [ { @@ -21863,22 +21857,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1288", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F17", "location identifier": "F17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21886,14 +21886,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1289", "device control aggregate document": { "device control document": [ { @@ -21905,22 +21899,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1289", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F18", "location identifier": "F18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21928,14 +21928,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1290", "device control aggregate document": { "device control document": [ { @@ -21947,22 +21941,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1290", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F19", "location identifier": "F19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -21970,14 +21970,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1291", "device control aggregate document": { "device control document": [ { @@ -21989,22 +21983,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1291", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F20", "location identifier": "F20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22012,14 +22012,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1292", "device control aggregate document": { "device control document": [ { @@ -22031,22 +22025,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1292", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F21", "location identifier": "F21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22054,14 +22054,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1293", "device control aggregate document": { "device control document": [ { @@ -22073,22 +22067,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1293", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F22", "location identifier": "F22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22096,14 +22096,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1294", "device control aggregate document": { "device control document": [ { @@ -22115,37 +22109,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1294", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F23", "location identifier": "F23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1295", "device control aggregate document": { "device control document": [ { @@ -22157,22 +22151,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1295", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM F24", "location identifier": "F24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22180,14 +22180,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1296", "device control aggregate document": { "device control document": [ { @@ -22199,22 +22193,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1296", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G1", "location identifier": "G1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22222,14 +22222,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1297", "device control aggregate document": { "device control document": [ { @@ -22241,22 +22235,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1297", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G2", "location identifier": "G2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22264,14 +22264,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1298", "device control aggregate document": { "device control document": [ { @@ -22283,22 +22277,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1298", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G3", "location identifier": "G3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22306,14 +22306,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1299", "device control aggregate document": { "device control document": [ { @@ -22325,22 +22319,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1299", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G4", "location identifier": "G4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22348,14 +22348,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1300", "device control aggregate document": { "device control document": [ { @@ -22367,22 +22361,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1300", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G5", "location identifier": "G5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22390,14 +22390,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1301", "device control aggregate document": { "device control document": [ { @@ -22409,22 +22403,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1301", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G6", "location identifier": "G6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22432,14 +22432,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1302", "device control aggregate document": { "device control document": [ { @@ -22451,22 +22445,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1302", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G7", "location identifier": "G7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22474,14 +22474,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1303", "device control aggregate document": { "device control document": [ { @@ -22493,22 +22487,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1303", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G8", "location identifier": "G8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22516,14 +22516,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1304", "device control aggregate document": { "device control document": [ { @@ -22535,22 +22529,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1304", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G9", "location identifier": "G9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22558,14 +22558,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1305", "device control aggregate document": { "device control document": [ { @@ -22577,22 +22571,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1305", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G10", "location identifier": "G10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22600,14 +22600,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1306", "device control aggregate document": { "device control document": [ { @@ -22619,22 +22613,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1306", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G11", "location identifier": "G11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22642,14 +22642,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1307", "device control aggregate document": { "device control document": [ { @@ -22661,22 +22655,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1307", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G12", "location identifier": "G12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 80, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 80, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22684,14 +22684,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1308", "device control aggregate document": { "device control document": [ { @@ -22703,22 +22697,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1308", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G13", "location identifier": "G13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22726,14 +22726,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1309", "device control aggregate document": { "device control document": [ { @@ -22745,22 +22739,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1309", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G14", "location identifier": "G14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22768,14 +22768,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1310", "device control aggregate document": { "device control document": [ { @@ -22787,22 +22781,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1310", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G15", "location identifier": "G15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22810,14 +22810,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1311", "device control aggregate document": { "device control document": [ { @@ -22829,22 +22823,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1311", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G16", "location identifier": "G16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22852,14 +22852,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1312", "device control aggregate document": { "device control document": [ { @@ -22871,22 +22865,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1312", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G17", "location identifier": "G17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22894,14 +22894,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1313", "device control aggregate document": { "device control document": [ { @@ -22913,22 +22907,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1313", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G18", "location identifier": "G18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22936,14 +22936,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1314", "device control aggregate document": { "device control document": [ { @@ -22955,22 +22949,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1314", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G19", "location identifier": "G19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -22978,14 +22978,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1315", "device control aggregate document": { "device control document": [ { @@ -22997,22 +22991,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1315", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G20", "location identifier": "G20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23020,14 +23020,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1316", "device control aggregate document": { "device control document": [ { @@ -23039,22 +23033,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1316", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G21", "location identifier": "G21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23062,14 +23062,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1317", "device control aggregate document": { "device control document": [ { @@ -23081,22 +23075,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1317", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G22", "location identifier": "G22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23104,14 +23104,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1318", "device control aggregate document": { "device control document": [ { @@ -23123,22 +23117,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1318", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G23", "location identifier": "G23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23146,14 +23146,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1319", "device control aggregate document": { "device control document": [ { @@ -23165,22 +23159,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1319", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM G24", "location identifier": "G24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23188,14 +23188,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1320", "device control aggregate document": { "device control document": [ { @@ -23207,22 +23201,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1320", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H1", "location identifier": "H1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23230,14 +23230,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1321", "device control aggregate document": { "device control document": [ { @@ -23249,22 +23243,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1321", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H2", "location identifier": "H2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23272,14 +23272,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1322", "device control aggregate document": { "device control document": [ { @@ -23291,22 +23285,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1322", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H3", "location identifier": "H3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23314,14 +23314,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1323", "device control aggregate document": { "device control document": [ { @@ -23333,22 +23327,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1323", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H4", "location identifier": "H4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23356,14 +23356,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1324", "device control aggregate document": { "device control document": [ { @@ -23375,22 +23369,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1324", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H5", "location identifier": "H5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23398,14 +23398,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1325", "device control aggregate document": { "device control document": [ { @@ -23417,22 +23411,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1325", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H6", "location identifier": "H6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23440,14 +23440,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1326", "device control aggregate document": { "device control document": [ { @@ -23459,22 +23453,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1326", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H7", "location identifier": "H7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23482,14 +23482,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1327", "device control aggregate document": { "device control document": [ { @@ -23501,22 +23495,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1327", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H8", "location identifier": "H8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23524,14 +23524,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1328", "device control aggregate document": { "device control document": [ { @@ -23543,22 +23537,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1328", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H9", "location identifier": "H9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23566,14 +23566,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1329", "device control aggregate document": { "device control document": [ { @@ -23585,22 +23579,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1329", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H10", "location identifier": "H10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23608,14 +23608,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1330", "device control aggregate document": { "device control document": [ { @@ -23627,22 +23621,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1330", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H11", "location identifier": "H11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23650,14 +23650,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1331", "device control aggregate document": { "device control document": [ { @@ -23669,22 +23663,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1331", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H12", "location identifier": "H12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23692,14 +23692,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1332", "device control aggregate document": { "device control document": [ { @@ -23711,22 +23705,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1332", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H13", "location identifier": "H13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23734,14 +23734,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1333", "device control aggregate document": { "device control document": [ { @@ -23753,22 +23747,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1333", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H14", "location identifier": "H14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23776,14 +23776,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1334", "device control aggregate document": { "device control document": [ { @@ -23795,22 +23789,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1334", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H15", "location identifier": "H15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23818,14 +23818,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1335", "device control aggregate document": { "device control document": [ { @@ -23837,22 +23831,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1335", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H16", "location identifier": "H16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23860,14 +23860,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1336", "device control aggregate document": { "device control document": [ { @@ -23879,22 +23873,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1336", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H17", "location identifier": "H17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23902,14 +23902,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1337", "device control aggregate document": { "device control document": [ { @@ -23921,22 +23915,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1337", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H18", "location identifier": "H18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23944,14 +23944,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1338", "device control aggregate document": { "device control document": [ { @@ -23963,22 +23957,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1338", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H19", "location identifier": "H19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -23986,14 +23986,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1339", "device control aggregate document": { "device control document": [ { @@ -24005,22 +23999,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1339", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H20", "location identifier": "H20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24028,14 +24028,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1340", "device control aggregate document": { "device control document": [ { @@ -24047,22 +24041,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1340", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H21", "location identifier": "H21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24070,14 +24070,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1341", "device control aggregate document": { "device control document": [ { @@ -24089,22 +24083,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1341", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H22", "location identifier": "H22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24112,14 +24112,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1342", "device control aggregate document": { "device control document": [ { @@ -24131,22 +24125,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1342", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H23", "location identifier": "H23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24154,14 +24154,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1343", "device control aggregate document": { "device control document": [ { @@ -24173,22 +24167,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1343", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM H24", "location identifier": "H24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24196,14 +24196,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1344", "device control aggregate document": { "device control document": [ { @@ -24215,22 +24209,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1344", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I1", "location identifier": "I1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24238,14 +24238,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1345", "device control aggregate document": { "device control document": [ { @@ -24257,37 +24251,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1345", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I2", "location identifier": "I2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1346", "device control aggregate document": { "device control document": [ { @@ -24299,22 +24293,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1346", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I3", "location identifier": "I3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24322,14 +24322,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1347", "device control aggregate document": { "device control document": [ { @@ -24341,22 +24335,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1347", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I4", "location identifier": "I4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24364,14 +24364,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1348", "device control aggregate document": { "device control document": [ { @@ -24383,22 +24377,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1348", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I5", "location identifier": "I5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24406,14 +24406,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1349", "device control aggregate document": { "device control document": [ { @@ -24425,22 +24419,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1349", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I6", "location identifier": "I6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24448,14 +24448,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1350", "device control aggregate document": { "device control document": [ { @@ -24467,22 +24461,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1350", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I7", "location identifier": "I7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24490,14 +24490,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1351", "device control aggregate document": { "device control document": [ { @@ -24509,22 +24503,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1351", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I8", "location identifier": "I8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24532,14 +24532,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1352", "device control aggregate document": { "device control document": [ { @@ -24551,22 +24545,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1352", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I9", "location identifier": "I9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24574,14 +24574,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1353", "device control aggregate document": { "device control document": [ { @@ -24593,22 +24587,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1353", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I10", "location identifier": "I10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24616,14 +24616,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1354", "device control aggregate document": { "device control document": [ { @@ -24635,22 +24629,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1354", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I11", "location identifier": "I11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24658,14 +24658,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1355", "device control aggregate document": { "device control document": [ { @@ -24677,22 +24671,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1355", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I12", "location identifier": "I12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24700,14 +24700,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1356", "device control aggregate document": { "device control document": [ { @@ -24719,22 +24713,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1356", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I13", "location identifier": "I13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24742,14 +24742,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1357", "device control aggregate document": { "device control document": [ { @@ -24761,22 +24755,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1357", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I14", "location identifier": "I14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24784,14 +24784,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1358", "device control aggregate document": { "device control document": [ { @@ -24803,22 +24797,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1358", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I15", "location identifier": "I15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24826,14 +24826,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1359", "device control aggregate document": { "device control document": [ { @@ -24845,22 +24839,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1359", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I16", "location identifier": "I16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24868,14 +24868,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1360", "device control aggregate document": { "device control document": [ { @@ -24887,22 +24881,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1360", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I17", "location identifier": "I17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24910,14 +24910,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1361", "device control aggregate document": { "device control document": [ { @@ -24929,22 +24923,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1361", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I18", "location identifier": "I18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24952,14 +24952,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1362", "device control aggregate document": { "device control document": [ { @@ -24971,22 +24965,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1362", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I19", "location identifier": "I19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -24994,14 +24994,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1363", "device control aggregate document": { "device control document": [ { @@ -25013,22 +25007,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1363", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I20", "location identifier": "I20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25036,14 +25036,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1364", "device control aggregate document": { "device control document": [ { @@ -25055,22 +25049,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1364", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I21", "location identifier": "I21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25078,14 +25078,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1365", "device control aggregate document": { "device control document": [ { @@ -25097,22 +25091,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1365", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I22", "location identifier": "I22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25120,14 +25120,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1366", "device control aggregate document": { "device control document": [ { @@ -25139,22 +25133,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1366", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I23", "location identifier": "I23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25162,14 +25162,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1367", "device control aggregate document": { "device control document": [ { @@ -25181,22 +25175,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1367", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM I24", "location identifier": "I24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25204,14 +25204,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1368", "device control aggregate document": { "device control document": [ { @@ -25223,22 +25217,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1368", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J1", "location identifier": "J1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25246,14 +25246,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1369", "device control aggregate document": { "device control document": [ { @@ -25265,22 +25259,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1369", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J2", "location identifier": "J2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25288,14 +25288,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1370", "device control aggregate document": { "device control document": [ { @@ -25307,22 +25301,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1370", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J3", "location identifier": "J3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25330,14 +25330,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1371", "device control aggregate document": { "device control document": [ { @@ -25349,22 +25343,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1371", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J4", "location identifier": "J4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25372,14 +25372,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1372", "device control aggregate document": { "device control document": [ { @@ -25391,22 +25385,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1372", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J5", "location identifier": "J5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25414,14 +25414,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1373", "device control aggregate document": { "device control document": [ { @@ -25433,22 +25427,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1373", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J6", "location identifier": "J6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25456,14 +25456,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1374", "device control aggregate document": { "device control document": [ { @@ -25475,22 +25469,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1374", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J7", "location identifier": "J7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25498,14 +25498,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1375", "device control aggregate document": { "device control document": [ { @@ -25517,22 +25511,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1375", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J8", "location identifier": "J8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25540,14 +25540,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1376", "device control aggregate document": { "device control document": [ { @@ -25559,22 +25553,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1376", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J9", "location identifier": "J9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25582,14 +25582,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1377", "device control aggregate document": { "device control document": [ { @@ -25601,22 +25595,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1377", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J10", "location identifier": "J10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25624,14 +25624,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1378", "device control aggregate document": { "device control document": [ { @@ -25643,22 +25637,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1378", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J11", "location identifier": "J11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25666,14 +25666,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1379", "device control aggregate document": { "device control document": [ { @@ -25685,22 +25679,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1379", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J12", "location identifier": "J12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25708,14 +25708,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1380", "device control aggregate document": { "device control document": [ { @@ -25727,22 +25721,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1380", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J13", "location identifier": "J13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25750,14 +25750,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1381", "device control aggregate document": { "device control document": [ { @@ -25769,22 +25763,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1381", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J14", "location identifier": "J14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25792,14 +25792,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1382", "device control aggregate document": { "device control document": [ { @@ -25811,22 +25805,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1382", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J15", "location identifier": "J15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25834,14 +25834,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1383", "device control aggregate document": { "device control document": [ { @@ -25853,22 +25847,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1383", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J16", "location identifier": "J16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25876,14 +25876,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1384", "device control aggregate document": { "device control document": [ { @@ -25895,22 +25889,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1384", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J17", "location identifier": "J17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25918,14 +25918,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1385", "device control aggregate document": { "device control document": [ { @@ -25937,22 +25931,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1385", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J18", "location identifier": "J18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -25960,14 +25960,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1386", "device control aggregate document": { "device control document": [ { @@ -25979,22 +25973,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1386", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J19", "location identifier": "J19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26002,14 +26002,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1387", "device control aggregate document": { "device control document": [ { @@ -26021,22 +26015,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1387", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J20", "location identifier": "J20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26044,14 +26044,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1388", "device control aggregate document": { "device control document": [ { @@ -26063,22 +26057,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1388", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J21", "location identifier": "J21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26086,14 +26086,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1389", "device control aggregate document": { "device control document": [ { @@ -26105,22 +26099,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1389", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J22", "location identifier": "J22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26128,14 +26128,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1390", "device control aggregate document": { "device control document": [ { @@ -26147,22 +26141,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1390", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J23", "location identifier": "J23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26170,14 +26170,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1391", "device control aggregate document": { "device control document": [ { @@ -26189,22 +26183,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1391", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM J24", "location identifier": "J24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26212,14 +26212,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1392", "device control aggregate document": { "device control document": [ { @@ -26231,22 +26225,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1392", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K1", "location identifier": "K1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26254,14 +26254,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1393", "device control aggregate document": { "device control document": [ { @@ -26273,22 +26267,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1393", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K2", "location identifier": "K2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26296,14 +26296,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1394", "device control aggregate document": { "device control document": [ { @@ -26315,22 +26309,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1394", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K3", "location identifier": "K3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26338,14 +26338,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1395", "device control aggregate document": { "device control document": [ { @@ -26357,22 +26351,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1395", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K4", "location identifier": "K4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26380,14 +26380,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1396", "device control aggregate document": { "device control document": [ { @@ -26399,37 +26393,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1396", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K5", "location identifier": "K5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1397", "device control aggregate document": { "device control document": [ { @@ -26441,22 +26435,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1397", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K6", "location identifier": "K6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26464,14 +26464,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1398", "device control aggregate document": { "device control document": [ { @@ -26483,22 +26477,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1398", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K7", "location identifier": "K7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26506,14 +26506,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1399", "device control aggregate document": { "device control document": [ { @@ -26525,22 +26519,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1399", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K8", "location identifier": "K8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26548,14 +26548,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1400", "device control aggregate document": { "device control document": [ { @@ -26567,22 +26561,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1400", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K9", "location identifier": "K9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26590,14 +26590,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1401", "device control aggregate document": { "device control document": [ { @@ -26609,22 +26603,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1401", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K10", "location identifier": "K10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26632,14 +26632,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1402", "device control aggregate document": { "device control document": [ { @@ -26651,22 +26645,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1402", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K11", "location identifier": "K11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26674,14 +26674,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1403", "device control aggregate document": { "device control document": [ { @@ -26693,22 +26687,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1403", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K12", "location identifier": "K12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26716,14 +26716,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1404", "device control aggregate document": { "device control document": [ { @@ -26735,22 +26729,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1404", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K13", "location identifier": "K13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26758,14 +26758,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1405", "device control aggregate document": { "device control document": [ { @@ -26777,22 +26771,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1405", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K14", "location identifier": "K14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26800,14 +26800,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1406", "device control aggregate document": { "device control document": [ { @@ -26819,22 +26813,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1406", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K15", "location identifier": "K15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26842,14 +26842,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1407", "device control aggregate document": { "device control document": [ { @@ -26861,22 +26855,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1407", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K16", "location identifier": "K16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26884,14 +26884,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1408", "device control aggregate document": { "device control document": [ { @@ -26903,22 +26897,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1408", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K17", "location identifier": "K17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26926,14 +26926,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1409", "device control aggregate document": { "device control document": [ { @@ -26945,22 +26939,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1409", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K18", "location identifier": "K18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -26968,14 +26968,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1410", "device control aggregate document": { "device control document": [ { @@ -26987,22 +26981,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1410", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K19", "location identifier": "K19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27010,14 +27010,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1411", "device control aggregate document": { "device control document": [ { @@ -27029,22 +27023,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1411", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K20", "location identifier": "K20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27052,14 +27052,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1412", "device control aggregate document": { "device control document": [ { @@ -27071,22 +27065,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1412", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K21", "location identifier": "K21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27094,14 +27094,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1413", "device control aggregate document": { "device control document": [ { @@ -27113,22 +27107,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1413", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K22", "location identifier": "K22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27136,14 +27136,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1414", "device control aggregate document": { "device control document": [ { @@ -27155,22 +27149,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1414", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K23", "location identifier": "K23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27178,14 +27178,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1415", "device control aggregate document": { "device control document": [ { @@ -27197,22 +27191,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1415", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM K24", "location identifier": "K24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27220,14 +27220,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1416", "device control aggregate document": { "device control document": [ { @@ -27239,22 +27233,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1416", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L1", "location identifier": "L1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27262,14 +27262,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1417", "device control aggregate document": { "device control document": [ { @@ -27281,22 +27275,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1417", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L2", "location identifier": "L2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27304,14 +27304,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1418", "device control aggregate document": { "device control document": [ { @@ -27323,22 +27317,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1418", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L3", "location identifier": "L3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27346,14 +27346,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1419", "device control aggregate document": { "device control document": [ { @@ -27365,22 +27359,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1419", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L4", "location identifier": "L4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27388,14 +27388,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1420", "device control aggregate document": { "device control document": [ { @@ -27407,22 +27401,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1420", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L5", "location identifier": "L5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27430,14 +27430,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1421", "device control aggregate document": { "device control document": [ { @@ -27449,22 +27443,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1421", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L6", "location identifier": "L6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27472,14 +27472,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1422", "device control aggregate document": { "device control document": [ { @@ -27491,22 +27485,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1422", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L7", "location identifier": "L7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27514,14 +27514,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1423", "device control aggregate document": { "device control document": [ { @@ -27533,22 +27527,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1423", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L8", "location identifier": "L8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27556,14 +27556,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1424", "device control aggregate document": { "device control document": [ { @@ -27575,22 +27569,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1424", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L9", "location identifier": "L9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27598,14 +27598,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1425", "device control aggregate document": { "device control document": [ { @@ -27617,22 +27611,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1425", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L10", "location identifier": "L10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27640,14 +27640,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1426", "device control aggregate document": { "device control document": [ { @@ -27659,22 +27653,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1426", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L11", "location identifier": "L11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27682,14 +27682,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1427", "device control aggregate document": { "device control document": [ { @@ -27701,22 +27695,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1427", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L12", "location identifier": "L12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27724,14 +27724,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1428", "device control aggregate document": { "device control document": [ { @@ -27743,22 +27737,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1428", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L13", "location identifier": "L13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27766,14 +27766,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1429", "device control aggregate document": { "device control document": [ { @@ -27785,22 +27779,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1429", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L14", "location identifier": "L14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27808,14 +27808,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1430", "device control aggregate document": { "device control document": [ { @@ -27827,22 +27821,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1430", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L15", "location identifier": "L15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27850,14 +27850,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1431", "device control aggregate document": { "device control document": [ { @@ -27869,22 +27863,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1431", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L16", "location identifier": "L16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27892,14 +27892,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1432", "device control aggregate document": { "device control document": [ { @@ -27911,22 +27905,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1432", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L17", "location identifier": "L17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27934,14 +27934,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1433", "device control aggregate document": { "device control document": [ { @@ -27953,22 +27947,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1433", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L18", "location identifier": "L18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -27976,14 +27976,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1434", "device control aggregate document": { "device control document": [ { @@ -27995,22 +27989,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1434", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L19", "location identifier": "L19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28018,14 +28018,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1435", "device control aggregate document": { "device control document": [ { @@ -28037,22 +28031,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1435", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L20", "location identifier": "L20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28060,14 +28060,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1436", "device control aggregate document": { "device control document": [ { @@ -28079,22 +28073,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1436", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L21", "location identifier": "L21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28102,14 +28102,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1437", "device control aggregate document": { "device control document": [ { @@ -28121,22 +28115,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1437", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L22", "location identifier": "L22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28144,14 +28144,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1438", "device control aggregate document": { "device control document": [ { @@ -28163,22 +28157,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1438", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L23", "location identifier": "L23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28186,14 +28186,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1439", "device control aggregate document": { "device control document": [ { @@ -28205,22 +28199,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1439", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM L24", "location identifier": "L24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28228,14 +28228,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1440", "device control aggregate document": { "device control document": [ { @@ -28247,22 +28241,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1440", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M1", "location identifier": "M1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28270,14 +28270,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1441", "device control aggregate document": { "device control document": [ { @@ -28289,22 +28283,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1441", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M2", "location identifier": "M2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28312,14 +28312,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1442", "device control aggregate document": { "device control document": [ { @@ -28331,22 +28325,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1442", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M3", "location identifier": "M3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28354,14 +28354,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1443", "device control aggregate document": { "device control document": [ { @@ -28373,22 +28367,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1443", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M4", "location identifier": "M4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28396,14 +28396,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1444", "device control aggregate document": { "device control document": [ { @@ -28415,22 +28409,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1444", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M5", "location identifier": "M5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28438,14 +28438,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1445", "device control aggregate document": { "device control document": [ { @@ -28457,22 +28451,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1445", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M6", "location identifier": "M6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28480,14 +28480,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1446", "device control aggregate document": { "device control document": [ { @@ -28499,22 +28493,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1446", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M7", "location identifier": "M7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28522,14 +28522,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1447", "device control aggregate document": { "device control document": [ { @@ -28541,37 +28535,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1447", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M8", "location identifier": "M8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1448", "device control aggregate document": { "device control document": [ { @@ -28583,22 +28577,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1448", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M9", "location identifier": "M9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28606,14 +28606,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1449", "device control aggregate document": { "device control document": [ { @@ -28625,22 +28619,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1449", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M10", "location identifier": "M10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28648,14 +28648,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1450", "device control aggregate document": { "device control document": [ { @@ -28667,22 +28661,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1450", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M11", "location identifier": "M11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28690,14 +28690,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1451", "device control aggregate document": { "device control document": [ { @@ -28709,22 +28703,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1451", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M12", "location identifier": "M12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28732,14 +28732,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1452", "device control aggregate document": { "device control document": [ { @@ -28751,22 +28745,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1452", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M13", "location identifier": "M13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28774,14 +28774,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1453", "device control aggregate document": { "device control document": [ { @@ -28793,22 +28787,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1453", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M14", "location identifier": "M14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28816,14 +28816,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1454", "device control aggregate document": { "device control document": [ { @@ -28835,22 +28829,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1454", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M15", "location identifier": "M15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28858,14 +28858,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1455", "device control aggregate document": { "device control document": [ { @@ -28877,22 +28871,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1455", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M16", "location identifier": "M16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28900,14 +28900,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1456", "device control aggregate document": { "device control document": [ { @@ -28919,22 +28913,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1456", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M17", "location identifier": "M17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28942,14 +28942,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1457", "device control aggregate document": { "device control document": [ { @@ -28961,22 +28955,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1457", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M18", "location identifier": "M18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -28984,14 +28984,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1458", "device control aggregate document": { "device control document": [ { @@ -29003,22 +28997,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1458", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M19", "location identifier": "M19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29026,14 +29026,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1459", "device control aggregate document": { "device control document": [ { @@ -29045,22 +29039,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1459", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M20", "location identifier": "M20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29068,14 +29068,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1460", "device control aggregate document": { "device control document": [ { @@ -29087,22 +29081,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1460", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M21", "location identifier": "M21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29110,14 +29110,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1461", "device control aggregate document": { "device control document": [ { @@ -29129,22 +29123,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1461", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M22", "location identifier": "M22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29152,14 +29152,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1462", "device control aggregate document": { "device control document": [ { @@ -29171,22 +29165,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1462", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M23", "location identifier": "M23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29194,14 +29194,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1463", "device control aggregate document": { "device control document": [ { @@ -29213,22 +29207,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1463", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM M24", "location identifier": "M24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29236,14 +29236,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1464", "device control aggregate document": { "device control document": [ { @@ -29255,22 +29249,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1464", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N1", "location identifier": "N1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29278,14 +29278,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1465", "device control aggregate document": { "device control document": [ { @@ -29297,22 +29291,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1465", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N2", "location identifier": "N2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29320,14 +29320,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1466", "device control aggregate document": { "device control document": [ { @@ -29339,22 +29333,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1466", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N3", "location identifier": "N3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29362,14 +29362,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1467", "device control aggregate document": { "device control document": [ { @@ -29381,22 +29375,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1467", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N4", "location identifier": "N4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29404,14 +29404,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1468", "device control aggregate document": { "device control document": [ { @@ -29423,22 +29417,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1468", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N5", "location identifier": "N5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29446,14 +29446,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1469", "device control aggregate document": { "device control document": [ { @@ -29465,22 +29459,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1469", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N6", "location identifier": "N6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29488,14 +29488,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1470", "device control aggregate document": { "device control document": [ { @@ -29507,22 +29501,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1470", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N7", "location identifier": "N7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29530,14 +29530,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1471", "device control aggregate document": { "device control document": [ { @@ -29549,22 +29543,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1471", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N8", "location identifier": "N8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29572,14 +29572,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1472", "device control aggregate document": { "device control document": [ { @@ -29591,22 +29585,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1472", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N9", "location identifier": "N9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29614,14 +29614,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1473", "device control aggregate document": { "device control document": [ { @@ -29633,22 +29627,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1473", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N10", "location identifier": "N10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29656,14 +29656,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1474", "device control aggregate document": { "device control document": [ { @@ -29675,22 +29669,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1474", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N11", "location identifier": "N11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29698,14 +29698,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1475", "device control aggregate document": { "device control document": [ { @@ -29717,22 +29711,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1475", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N12", "location identifier": "N12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29740,14 +29740,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1476", "device control aggregate document": { "device control document": [ { @@ -29759,22 +29753,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1476", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N13", "location identifier": "N13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29782,14 +29782,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1477", "device control aggregate document": { "device control document": [ { @@ -29801,22 +29795,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1477", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N14", "location identifier": "N14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29824,14 +29824,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1478", "device control aggregate document": { "device control document": [ { @@ -29843,22 +29837,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1478", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N15", "location identifier": "N15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29866,14 +29866,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1479", "device control aggregate document": { "device control document": [ { @@ -29885,22 +29879,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1479", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N16", "location identifier": "N16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29908,14 +29908,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1480", "device control aggregate document": { "device control document": [ { @@ -29927,22 +29921,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1480", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N17", "location identifier": "N17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29950,14 +29950,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1481", "device control aggregate document": { "device control document": [ { @@ -29969,22 +29963,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1481", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N18", "location identifier": "N18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -29992,14 +29992,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1482", "device control aggregate document": { "device control document": [ { @@ -30011,22 +30005,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1482", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N19", "location identifier": "N19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30034,14 +30034,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1483", "device control aggregate document": { "device control document": [ { @@ -30053,22 +30047,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1483", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N20", "location identifier": "N20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30076,14 +30076,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1484", "device control aggregate document": { "device control document": [ { @@ -30095,22 +30089,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1484", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N21", "location identifier": "N21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30118,14 +30118,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1485", "device control aggregate document": { "device control document": [ { @@ -30137,22 +30131,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1485", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N22", "location identifier": "N22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30160,14 +30160,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1486", "device control aggregate document": { "device control document": [ { @@ -30179,22 +30173,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1486", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N23", "location identifier": "N23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30202,14 +30202,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1487", "device control aggregate document": { "device control document": [ { @@ -30221,22 +30215,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1487", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM N24", "location identifier": "N24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30244,14 +30244,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1488", "device control aggregate document": { "device control document": [ { @@ -30263,22 +30257,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1488", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O1", "location identifier": "O1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30286,14 +30286,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1489", "device control aggregate document": { "device control document": [ { @@ -30305,22 +30299,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1489", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O2", "location identifier": "O2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30328,14 +30328,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1490", "device control aggregate document": { "device control document": [ { @@ -30347,22 +30341,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1490", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O3", "location identifier": "O3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30370,14 +30370,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1491", "device control aggregate document": { "device control document": [ { @@ -30389,22 +30383,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1491", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O4", "location identifier": "O4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30412,14 +30412,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1492", "device control aggregate document": { "device control document": [ { @@ -30431,22 +30425,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1492", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O5", "location identifier": "O5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30454,14 +30454,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1493", "device control aggregate document": { "device control document": [ { @@ -30473,22 +30467,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1493", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O6", "location identifier": "O6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30496,14 +30496,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1494", "device control aggregate document": { "device control document": [ { @@ -30515,22 +30509,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1494", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O7", "location identifier": "O7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30538,14 +30538,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1495", "device control aggregate document": { "device control document": [ { @@ -30557,22 +30551,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1495", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O8", "location identifier": "O8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30580,14 +30580,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1496", "device control aggregate document": { "device control document": [ { @@ -30599,22 +30593,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1496", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O9", "location identifier": "O9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30622,14 +30622,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1497", "device control aggregate document": { "device control document": [ { @@ -30641,22 +30635,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1497", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O10", "location identifier": "O10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30664,14 +30664,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1498", "device control aggregate document": { "device control document": [ { @@ -30683,37 +30677,37 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1498", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O11", "location identifier": "O11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], - "analytical method identifier": "100176", - "experimental data identifier": "2900", - "container type": "well plate" - } - }, - { - "measurement aggregate document": { "measurement time": "2023-08-22T12:16:31+00:00", "plate well count": { "value": 384.0, "unit": "#" }, + "analytical method identifier": "100176", + "experimental data identifier": "2900", + "container type": "well plate" + } + }, + { + "measurement aggregate document": { "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1499", "device control aggregate document": { "device control document": [ { @@ -30725,22 +30719,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1499", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O12", "location identifier": "O12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30748,14 +30748,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1500", "device control aggregate document": { "device control document": [ { @@ -30767,22 +30761,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1500", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O13", "location identifier": "O13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30790,14 +30790,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1501", "device control aggregate document": { "device control document": [ { @@ -30809,22 +30803,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1501", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O14", "location identifier": "O14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30832,14 +30832,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1502", "device control aggregate document": { "device control document": [ { @@ -30851,22 +30845,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1502", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O15", "location identifier": "O15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30874,14 +30874,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1503", "device control aggregate document": { "device control document": [ { @@ -30893,22 +30887,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1503", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O16", "location identifier": "O16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30916,14 +30916,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1504", "device control aggregate document": { "device control document": [ { @@ -30935,22 +30929,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1504", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O17", "location identifier": "O17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -30958,14 +30958,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1505", "device control aggregate document": { "device control document": [ { @@ -30977,22 +30971,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1505", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O18", "location identifier": "O18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31000,14 +31000,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1506", "device control aggregate document": { "device control document": [ { @@ -31019,22 +31013,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1506", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O19", "location identifier": "O19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31042,14 +31042,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1507", "device control aggregate document": { "device control document": [ { @@ -31061,22 +31055,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1507", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O20", "location identifier": "O20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31084,14 +31084,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1508", "device control aggregate document": { "device control document": [ { @@ -31103,22 +31097,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1508", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O21", "location identifier": "O21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31126,14 +31126,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1509", "device control aggregate document": { "device control document": [ { @@ -31145,22 +31139,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1509", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O22", "location identifier": "O22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31168,14 +31168,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1510", "device control aggregate document": { "device control document": [ { @@ -31187,22 +31181,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1510", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O23", "location identifier": "O23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31210,14 +31210,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1511", "device control aggregate document": { "device control document": [ { @@ -31229,22 +31223,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1511", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM O24", "location identifier": "O24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31252,14 +31252,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1512", "device control aggregate document": { "device control document": [ { @@ -31271,22 +31265,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1512", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P1", "location identifier": "P1", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31294,14 +31294,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1513", "device control aggregate document": { "device control document": [ { @@ -31313,22 +31307,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1513", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P2", "location identifier": "P2", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31336,14 +31336,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1514", "device control aggregate document": { "device control document": [ { @@ -31355,22 +31349,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1514", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P3", "location identifier": "P3", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31378,14 +31378,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1515", "device control aggregate document": { "device control document": [ { @@ -31397,22 +31391,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1515", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P4", "location identifier": "P4", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31420,14 +31420,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1516", "device control aggregate document": { "device control document": [ { @@ -31439,22 +31433,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1516", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P5", "location identifier": "P5", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31462,14 +31462,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1517", "device control aggregate document": { "device control document": [ { @@ -31481,22 +31475,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1517", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P6", "location identifier": "P6", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31504,14 +31504,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1518", "device control aggregate document": { "device control document": [ { @@ -31523,22 +31517,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1518", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P7", "location identifier": "P7", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31546,14 +31546,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1519", "device control aggregate document": { "device control document": [ { @@ -31565,22 +31559,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1519", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P8", "location identifier": "P8", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31588,14 +31588,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1520", "device control aggregate document": { "device control document": [ { @@ -31607,22 +31601,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1520", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P9", "location identifier": "P9", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31630,14 +31630,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1521", "device control aggregate document": { "device control document": [ { @@ -31649,22 +31643,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1521", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P10", "location identifier": "P10", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31672,14 +31672,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1522", "device control aggregate document": { "device control document": [ { @@ -31691,22 +31685,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1522", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P11", "location identifier": "P11", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31714,14 +31714,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1523", "device control aggregate document": { "device control document": [ { @@ -31733,22 +31727,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1523", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P12", "location identifier": "P12", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31756,14 +31756,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1524", "device control aggregate document": { "device control document": [ { @@ -31775,22 +31769,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1524", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P13", "location identifier": "P13", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31798,14 +31798,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1525", "device control aggregate document": { "device control document": [ { @@ -31817,22 +31811,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1525", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P14", "location identifier": "P14", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31840,14 +31840,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1526", "device control aggregate document": { "device control document": [ { @@ -31859,22 +31853,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1526", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P15", "location identifier": "P15", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31882,14 +31882,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1527", "device control aggregate document": { "device control document": [ { @@ -31901,22 +31895,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1527", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P16", "location identifier": "P16", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31924,14 +31924,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1528", "device control aggregate document": { "device control document": [ { @@ -31943,22 +31937,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1528", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P17", "location identifier": "P17", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -31966,14 +31966,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1529", "device control aggregate document": { "device control document": [ { @@ -31985,22 +31979,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1529", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P18", "location identifier": "P18", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32008,14 +32008,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1530", "device control aggregate document": { "device control document": [ { @@ -32027,22 +32021,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1530", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P19", "location identifier": "P19", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32050,14 +32050,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1531", "device control aggregate document": { "device control document": [ { @@ -32069,22 +32063,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1531", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P20", "location identifier": "P20", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32092,14 +32092,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1532", "device control aggregate document": { "device control document": [ { @@ -32111,22 +32105,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1532", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P21", "location identifier": "P21", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32134,14 +32134,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1533", "device control aggregate document": { "device control document": [ { @@ -32153,22 +32147,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1533", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P22", "location identifier": "P22", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 0, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 0, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32176,14 +32176,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1534", "device control aggregate document": { "device control document": [ { @@ -32195,22 +32189,28 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1534", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P23", "location identifier": "P23", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" @@ -32218,14 +32218,8 @@ }, { "measurement aggregate document": { - "measurement time": "2023-08-22T12:16:31+00:00", - "plate well count": { - "value": 384.0, - "unit": "#" - }, "measurement document": [ { - "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1535", "device control aggregate document": { "device control document": [ { @@ -32237,43 +32231,34 @@ } ] }, + "measurement identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1535", "sample document": { "sample identifier": "8/22/2023 12:16:57 PM P24", "location identifier": "P24", "sample role type": "unknown sample role", "well plate identifier": "8/22/2023 12:16:57 PM" }, - "luminescence": { - "value": 40, - "unit": "RLU" - }, "compartment temperature": { "value": 23.66, "unit": "degC" + }, + "luminescence": { + "value": 40, + "unit": "RLU" } } ], + "measurement time": "2023-08-22T12:16:31+00:00", + "plate well count": { + "value": 384.0, + "unit": "#" + }, "analytical method identifier": "100176", "experimental data identifier": "2900", "container type": "well plate" } } ], - "device system document": { - "device identifier": "EnVision#Alpha_680nm", - "model number": "EnVision", - "equipment serial number": "1051017" - }, - "data system document": { - "file name": "PE_Envision_luminescence_example01.csv", - "ASM file identifier": "N/A", - "UNC path": "N/A", - "data system instance identifier": "N/A", - "software name": "EnVision Workstation", - "software version": "1.14.3049.1193", - "ASM converter name": "allotropy_perkinelmer_envision", - "ASM converter version": "0.1.54" - }, "calculated data aggregate document": { "calculated data document": [ { @@ -32282,6 +32267,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32289,9 +32276,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_0", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32299,6 +32284,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32306,9 +32293,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32316,6 +32301,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32323,9 +32310,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_2", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32333,6 +32318,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32340,9 +32327,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_3", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32350,6 +32335,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32357,9 +32344,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_4", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32367,6 +32352,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32374,9 +32361,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_5", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32384,6 +32369,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32391,9 +32378,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_6", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32401,6 +32386,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32408,9 +32395,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_7", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32418,6 +32403,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32425,9 +32412,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_8", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32435,6 +32420,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32442,9 +32429,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_9", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32452,6 +32437,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32459,9 +32446,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_10", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32469,6 +32454,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32476,9 +32463,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_11", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32486,6 +32471,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32493,9 +32480,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_12", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32503,6 +32488,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32510,9 +32497,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_13", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32520,6 +32505,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32527,9 +32514,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_14", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32537,6 +32522,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32544,9 +32531,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_15", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32554,6 +32539,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32561,9 +32548,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_16", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32571,6 +32556,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32578,9 +32565,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_17", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32588,6 +32573,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32595,9 +32582,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_18", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32605,6 +32590,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32612,9 +32599,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_19", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32622,6 +32607,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32629,9 +32616,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_20", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32639,6 +32624,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32646,9 +32633,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_21", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32656,6 +32641,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32663,9 +32650,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_22", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32673,6 +32658,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32680,9 +32667,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_23", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32690,6 +32675,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32697,9 +32684,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_24", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32707,6 +32692,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32714,9 +32701,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_25", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32724,6 +32709,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32731,9 +32718,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_26", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32741,6 +32726,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32748,9 +32735,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_27", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32758,6 +32743,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32765,9 +32752,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_28", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32775,6 +32760,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32782,9 +32769,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_29", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32792,6 +32777,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32799,9 +32786,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_30", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32809,6 +32794,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32816,9 +32803,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_31", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32826,6 +32811,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32833,9 +32820,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_32", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32843,6 +32828,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32850,9 +32837,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_33", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32860,6 +32845,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32867,9 +32854,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_34", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32877,6 +32862,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32884,9 +32871,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_35", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32894,6 +32879,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32901,9 +32888,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_36", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32911,6 +32896,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32918,9 +32905,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_37", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32928,6 +32913,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32935,9 +32922,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_38", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32945,6 +32930,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32952,9 +32939,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_39", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32962,6 +32947,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32969,9 +32956,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_40", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32979,6 +32964,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -32986,9 +32973,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_41", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -32996,6 +32981,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33003,9 +32990,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_42", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33013,6 +32998,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33020,9 +33007,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_43", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33030,6 +33015,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33037,9 +33024,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_44", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33047,6 +33032,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33054,9 +33041,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_45", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33064,6 +33049,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33071,9 +33058,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_46", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33081,6 +33066,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33088,9 +33075,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_47", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33098,6 +33083,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33105,9 +33092,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_48", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33115,6 +33100,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33122,9 +33109,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_49", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33132,6 +33117,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33139,9 +33126,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_50", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33149,6 +33134,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33156,9 +33143,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_51", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33166,6 +33151,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33173,9 +33160,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_52", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33183,6 +33168,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33190,9 +33177,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_53", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33200,6 +33185,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33207,9 +33194,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_54", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33217,6 +33202,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33224,9 +33211,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_55", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33234,6 +33219,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33241,9 +33228,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_56", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33251,6 +33236,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33258,9 +33245,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_57", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33268,6 +33253,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33275,9 +33262,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_58", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33285,6 +33270,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33292,9 +33279,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_59", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33302,6 +33287,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33309,9 +33296,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_60", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33319,6 +33304,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33326,9 +33313,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_61", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33336,6 +33321,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33343,9 +33330,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_62", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33353,6 +33338,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33360,9 +33347,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_63", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33370,6 +33355,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33377,9 +33364,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_64", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33387,6 +33372,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33394,9 +33381,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_65", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33404,6 +33389,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33411,9 +33398,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_66", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33421,6 +33406,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33428,9 +33415,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_67", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33438,6 +33423,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33445,9 +33432,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_68", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33455,6 +33440,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33462,9 +33449,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_69", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33472,6 +33457,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33479,9 +33466,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_70", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33489,6 +33474,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33496,9 +33483,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_71", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33506,6 +33491,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33513,9 +33500,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_72", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33523,6 +33508,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33530,9 +33517,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_73", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33540,6 +33525,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33547,9 +33534,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_74", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33557,6 +33542,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33564,9 +33551,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_75", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33574,6 +33559,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33581,9 +33568,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_76", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33591,6 +33576,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33598,9 +33585,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_77", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33608,6 +33593,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33615,9 +33602,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_78", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33625,6 +33610,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33632,9 +33619,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_79", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33642,6 +33627,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33649,9 +33636,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_80", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33659,6 +33644,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33666,9 +33653,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_81", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33676,6 +33661,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33683,9 +33670,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_82", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33693,6 +33678,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33700,9 +33687,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_83", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33710,6 +33695,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33717,9 +33704,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_84", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33727,6 +33712,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33734,9 +33721,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_85", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33744,6 +33729,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33751,9 +33738,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_86", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33761,6 +33746,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33768,9 +33755,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_87", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33778,6 +33763,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33785,9 +33772,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_88", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33795,6 +33780,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33802,9 +33789,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_89", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33812,16 +33797,16 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_474", "data source feature": "Luminescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_90", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33829,6 +33814,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33836,9 +33823,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_91", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33846,6 +33831,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33853,9 +33840,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_92", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33863,6 +33848,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33870,9 +33857,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_93", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33880,6 +33865,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33887,9 +33874,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_94", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33897,6 +33882,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33904,9 +33891,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_95", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33914,6 +33899,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33921,9 +33908,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_96", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33931,6 +33916,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33938,9 +33925,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_97", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33948,6 +33933,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33955,9 +33942,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_98", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33965,6 +33950,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33972,9 +33959,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_99", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33982,6 +33967,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -33989,9 +33976,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_100", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -33999,6 +33984,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34006,9 +33993,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_101", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34016,6 +34001,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34023,9 +34010,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_102", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34033,6 +34018,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34040,9 +34027,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_103", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34050,6 +34035,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34057,9 +34044,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_104", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34067,6 +34052,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34074,9 +34061,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_105", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34084,6 +34069,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34091,9 +34078,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_106", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34101,6 +34086,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34108,9 +34095,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_107", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34118,6 +34103,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34125,9 +34112,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_108", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34135,6 +34120,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34142,9 +34129,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_109", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34152,6 +34137,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34159,9 +34146,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_110", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34169,6 +34154,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34176,9 +34163,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_111", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34186,6 +34171,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34193,9 +34180,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_112", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34203,6 +34188,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34210,9 +34197,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_113", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34220,6 +34205,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34227,9 +34214,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_114", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34237,6 +34222,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34244,9 +34231,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_115", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34254,6 +34239,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34261,9 +34248,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_116", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34271,6 +34256,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34278,9 +34265,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_117", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34288,6 +34273,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34295,9 +34282,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_118", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34305,6 +34290,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34312,9 +34299,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_119", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34322,6 +34307,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34329,9 +34316,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_120", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34339,6 +34324,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34346,9 +34333,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_121", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34356,6 +34341,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34363,9 +34350,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_122", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34373,6 +34358,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34380,9 +34367,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_123", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34390,6 +34375,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34397,9 +34384,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_124", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34407,6 +34392,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34414,9 +34401,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_125", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34424,6 +34409,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34431,9 +34418,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_126", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34441,6 +34426,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34448,9 +34435,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_127", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34458,6 +34443,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34465,9 +34452,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_128", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34475,6 +34460,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34482,9 +34469,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_129", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34492,6 +34477,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34499,9 +34486,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_130", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34509,6 +34494,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34516,9 +34503,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_131", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34526,6 +34511,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34533,9 +34520,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_132", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34543,6 +34528,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34550,9 +34537,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_133", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34560,6 +34545,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34567,9 +34554,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_134", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34577,6 +34562,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34584,9 +34571,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_135", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34594,6 +34579,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34601,9 +34588,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_136", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34611,6 +34596,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34618,9 +34605,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_137", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34628,6 +34613,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34635,9 +34622,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_138", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34645,6 +34630,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34652,9 +34639,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_139", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34662,6 +34647,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34669,9 +34656,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_140", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34679,6 +34664,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34686,9 +34673,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_141", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34696,6 +34681,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34703,9 +34690,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_142", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34713,6 +34698,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34720,9 +34707,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_143", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34730,6 +34715,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34737,9 +34724,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_144", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34747,6 +34732,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34754,9 +34741,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_145", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34764,6 +34749,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34771,9 +34758,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_146", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34781,6 +34766,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34788,9 +34775,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_147", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34798,6 +34783,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34805,9 +34792,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_148", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34815,6 +34800,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34822,9 +34809,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_149", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34832,6 +34817,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34839,9 +34826,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_150", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34849,6 +34834,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34856,9 +34843,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_151", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34866,6 +34851,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34873,9 +34860,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_152", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34883,6 +34868,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34890,9 +34877,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_153", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34900,6 +34885,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34907,9 +34894,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_154", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34917,6 +34902,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34924,9 +34911,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_155", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34934,6 +34919,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34941,9 +34928,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_156", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34951,6 +34936,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34958,9 +34945,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_157", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34968,6 +34953,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34975,9 +34962,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_158", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -34985,6 +34970,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -34992,9 +34979,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_159", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35002,6 +34987,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35009,9 +34996,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_160", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35019,6 +35004,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35026,9 +35013,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_161", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35036,6 +35021,8 @@ "value": 120.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35043,9 +35030,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_162", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35053,6 +35038,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35060,9 +35047,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_163", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35070,6 +35055,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35077,9 +35064,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_164", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35087,6 +35072,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35094,9 +35081,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_165", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35104,6 +35089,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35111,9 +35098,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_166", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35121,6 +35106,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35128,9 +35115,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_167", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35138,6 +35123,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35145,9 +35132,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_168", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35155,6 +35140,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35162,9 +35149,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_169", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35172,6 +35157,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35179,9 +35166,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_170", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35189,6 +35174,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35196,9 +35183,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_171", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35206,6 +35191,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35213,9 +35200,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_172", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35223,6 +35208,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35230,9 +35217,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_173", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35240,6 +35225,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35247,9 +35234,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_174", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35257,6 +35242,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35264,9 +35251,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_175", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35274,6 +35259,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35281,9 +35268,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_176", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35291,6 +35276,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35298,9 +35285,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_177", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35308,6 +35293,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35315,9 +35302,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_178", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35325,6 +35310,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35332,9 +35319,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_179", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35342,6 +35327,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35349,9 +35336,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_180", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35359,6 +35344,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35366,9 +35353,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_181", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35376,6 +35361,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35383,9 +35370,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_182", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35393,6 +35378,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35400,9 +35387,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_183", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35410,6 +35395,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35417,9 +35404,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_184", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35427,6 +35412,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35434,9 +35421,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_185", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35444,6 +35429,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35451,9 +35438,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_186", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35461,6 +35446,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35468,9 +35455,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_187", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35478,6 +35463,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35485,9 +35472,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_188", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35495,6 +35480,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35502,9 +35489,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_189", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35512,6 +35497,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35519,9 +35506,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_190", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35529,6 +35514,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35536,9 +35523,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_191", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35546,6 +35531,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35553,9 +35540,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_192", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35563,6 +35548,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35570,9 +35557,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_193", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35580,6 +35565,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35587,9 +35574,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_194", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35597,6 +35582,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35604,9 +35591,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_195", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35614,6 +35599,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35621,9 +35608,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_196", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35631,6 +35616,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35638,9 +35625,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_197", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35648,6 +35633,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35655,9 +35642,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_198", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35665,6 +35650,8 @@ "value": 120.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35672,9 +35659,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_199", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35682,6 +35667,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35689,9 +35676,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_200", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35699,6 +35684,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35706,9 +35693,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_201", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35716,6 +35701,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35723,9 +35710,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_202", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35733,6 +35718,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35740,9 +35727,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_203", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35750,6 +35735,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35757,9 +35744,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_204", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35767,6 +35752,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35774,9 +35761,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_205", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35784,6 +35769,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35791,9 +35778,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_206", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35801,6 +35786,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35808,9 +35795,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_207", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35818,6 +35803,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35825,9 +35812,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_208", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35835,6 +35820,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35842,9 +35829,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_209", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35852,6 +35837,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35859,9 +35846,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_210", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35869,6 +35854,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35876,9 +35863,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_211", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35886,6 +35871,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35893,9 +35880,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_212", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35903,6 +35888,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35910,9 +35897,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_213", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35920,6 +35905,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35927,9 +35914,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_214", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35937,6 +35922,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35944,9 +35931,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_215", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35954,6 +35939,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35961,9 +35948,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_216", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35971,6 +35956,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35978,9 +35965,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_217", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -35988,6 +35973,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -35995,9 +35982,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_218", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36005,6 +35990,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36012,9 +35999,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_219", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36022,6 +36007,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36029,9 +36016,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_220", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36039,6 +36024,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36046,9 +36033,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_221", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36056,6 +36041,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36063,9 +36050,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_222", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36073,6 +36058,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36080,9 +36067,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_223", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36090,6 +36075,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36097,9 +36084,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_224", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36107,6 +36092,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36114,9 +36101,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_225", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36124,6 +36109,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36131,9 +36118,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_226", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36141,6 +36126,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36148,9 +36135,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_227", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36158,6 +36143,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36165,9 +36152,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_228", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36175,6 +36160,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36182,9 +36169,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_229", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36192,6 +36177,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36199,9 +36186,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_230", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36209,6 +36194,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36216,9 +36203,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_231", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36226,6 +36211,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36233,9 +36220,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_232", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36243,6 +36228,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36250,9 +36237,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_233", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36260,6 +36245,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36267,9 +36254,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_234", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36277,6 +36262,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36284,9 +36271,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_235", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36294,6 +36279,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36301,9 +36288,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_236", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36311,6 +36296,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36318,9 +36305,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_237", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36328,6 +36313,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36335,9 +36322,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_238", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36345,6 +36330,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36352,9 +36339,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_239", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36362,6 +36347,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36369,9 +36356,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_240", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36379,6 +36364,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36386,9 +36373,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_241", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36396,6 +36381,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36403,9 +36390,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_242", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36413,6 +36398,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36420,9 +36407,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_243", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36430,6 +36415,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36437,9 +36424,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_244", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36447,6 +36432,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36454,9 +36441,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_245", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36464,6 +36449,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36471,9 +36458,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_246", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36481,6 +36466,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36488,9 +36475,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_247", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36498,6 +36483,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36505,9 +36492,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_248", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36515,6 +36500,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36522,9 +36509,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_249", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36532,6 +36517,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36539,9 +36526,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_250", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36549,6 +36534,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36556,9 +36543,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_251", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36566,6 +36551,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36573,9 +36560,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_252", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36583,6 +36568,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36590,9 +36577,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_253", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36600,6 +36585,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36607,9 +36594,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_254", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36617,6 +36602,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36624,9 +36611,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_255", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36634,6 +36619,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36641,9 +36628,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_256", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36651,6 +36636,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36658,9 +36645,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_257", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36668,6 +36653,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36675,9 +36662,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_258", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36685,6 +36670,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36692,9 +36679,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_259", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36702,16 +36687,16 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_644", "data source feature": "Luminescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_260", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36719,6 +36704,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36726,9 +36713,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_261", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36736,6 +36721,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36743,9 +36730,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_262", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36753,6 +36738,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36760,9 +36747,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_263", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36770,6 +36755,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36777,9 +36764,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_264", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36787,6 +36772,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36794,9 +36781,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_265", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36804,6 +36789,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36811,9 +36798,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_266", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36821,6 +36806,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36828,9 +36815,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_267", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36838,6 +36823,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36845,9 +36832,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_268", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36855,6 +36840,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36862,9 +36849,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_269", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36872,6 +36857,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36879,9 +36866,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_270", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36889,6 +36874,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36896,9 +36883,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_271", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36906,6 +36891,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36913,9 +36900,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_272", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36923,6 +36908,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36930,9 +36917,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_273", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36940,6 +36925,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36947,9 +36934,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_274", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36957,6 +36942,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36964,9 +36951,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_275", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36974,6 +36959,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36981,9 +36968,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_276", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -36991,6 +36976,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -36998,9 +36985,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_277", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37008,6 +36993,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37015,9 +37002,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_278", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37025,6 +37010,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37032,9 +37019,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_279", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37042,6 +37027,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37049,9 +37036,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_280", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37059,6 +37044,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37066,9 +37053,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_281", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37076,6 +37061,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37083,9 +37070,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_282", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37093,6 +37078,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37100,9 +37087,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_283", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37110,6 +37095,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37117,9 +37104,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_284", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37127,6 +37112,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37134,9 +37121,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_285", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37144,6 +37129,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37151,9 +37138,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_286", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37161,6 +37146,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37168,9 +37155,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_287", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37178,6 +37163,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37185,9 +37172,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_288", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37195,6 +37180,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37202,9 +37189,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_289", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37212,6 +37197,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37219,9 +37206,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_290", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37229,6 +37214,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37236,9 +37223,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_291", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37246,6 +37231,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37253,9 +37240,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_292", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37263,6 +37248,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37270,9 +37257,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_293", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37280,6 +37265,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37287,9 +37274,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_294", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37297,6 +37282,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37304,9 +37291,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_295", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37314,6 +37299,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37321,9 +37308,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_296", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37331,6 +37316,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37338,9 +37325,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_297", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37348,6 +37333,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37355,9 +37342,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_298", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37365,6 +37350,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37372,9 +37359,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_299", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37382,6 +37367,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37389,9 +37376,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_300", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37399,6 +37384,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37406,9 +37393,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_301", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37416,6 +37401,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37423,9 +37410,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_302", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37433,6 +37418,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37440,9 +37427,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_303", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37450,6 +37435,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37457,9 +37444,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_304", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37467,6 +37452,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37474,9 +37461,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_305", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37484,6 +37469,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37491,9 +37478,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_306", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37501,6 +37486,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37508,9 +37495,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_307", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37518,6 +37503,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37525,9 +37512,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_308", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37535,6 +37520,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37542,9 +37529,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_309", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37552,6 +37537,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37559,9 +37546,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_310", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37569,6 +37554,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37576,9 +37563,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_311", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37586,6 +37571,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37593,9 +37580,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_312", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37603,6 +37588,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37610,9 +37597,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_313", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37620,6 +37605,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37627,9 +37614,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_314", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37637,6 +37622,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37644,9 +37631,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_315", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37654,6 +37639,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37661,9 +37648,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_316", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37671,6 +37656,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37678,9 +37665,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_317", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37688,6 +37673,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37695,9 +37682,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_318", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37705,6 +37690,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37712,9 +37699,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_319", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37722,6 +37707,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37729,9 +37716,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_320", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37739,6 +37724,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37746,9 +37733,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_321", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37756,6 +37741,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37763,9 +37750,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_322", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37773,6 +37758,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37780,9 +37767,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_323", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37790,6 +37775,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37797,9 +37784,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_324", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37807,6 +37792,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37814,9 +37801,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_325", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37824,6 +37809,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37831,9 +37818,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_326", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37841,6 +37826,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37848,9 +37835,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_327", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37858,6 +37843,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37865,9 +37852,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_328", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37875,6 +37860,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37882,9 +37869,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_329", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37892,6 +37877,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37899,9 +37886,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_330", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37909,6 +37894,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37916,9 +37903,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_331", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37926,6 +37911,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37933,9 +37920,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_332", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37943,6 +37928,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37950,9 +37937,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_333", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37960,6 +37945,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37967,9 +37954,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_334", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37977,6 +37962,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -37984,9 +37971,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_335", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -37994,6 +37979,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38001,9 +37988,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_336", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38011,6 +37996,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38018,9 +38005,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_337", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38028,6 +38013,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38035,9 +38022,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_338", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38045,6 +38030,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38052,9 +38039,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_339", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38062,6 +38047,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38069,9 +38056,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_340", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38079,6 +38064,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38086,9 +38073,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_341", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38096,6 +38081,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38103,9 +38090,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_342", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38113,6 +38098,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38120,9 +38107,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_343", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38130,6 +38115,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38137,9 +38124,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_344", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38147,6 +38132,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38154,9 +38141,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_345", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38164,6 +38149,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38171,9 +38158,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_346", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38181,6 +38166,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38188,9 +38175,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_347", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38198,6 +38183,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38205,9 +38192,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_348", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38215,6 +38200,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38222,9 +38209,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_349", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38232,6 +38217,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38239,9 +38226,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_350", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38249,6 +38234,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38256,9 +38243,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_351", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38266,6 +38251,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38273,9 +38260,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_352", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38283,6 +38268,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38290,9 +38277,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_353", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38300,6 +38285,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38307,9 +38294,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_354", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38317,6 +38302,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38324,9 +38311,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_355", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38334,6 +38319,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38341,9 +38328,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_356", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38351,6 +38336,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38358,9 +38345,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_357", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38368,6 +38353,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38375,9 +38362,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_358", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38385,6 +38370,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38392,9 +38379,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_359", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38402,6 +38387,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38409,9 +38396,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_360", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38419,6 +38404,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38426,9 +38413,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_361", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38436,6 +38421,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38443,9 +38430,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_362", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38453,6 +38438,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38460,9 +38447,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_363", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38470,6 +38455,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38477,9 +38464,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_364", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38487,6 +38472,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38494,9 +38481,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_365", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38504,6 +38489,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38511,9 +38498,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_366", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38521,6 +38506,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38528,9 +38515,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_367", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38538,6 +38523,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38545,9 +38532,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_368", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38555,6 +38540,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38562,9 +38549,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_369", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38572,6 +38557,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38579,9 +38566,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_370", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38589,6 +38574,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38596,9 +38583,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_371", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38606,6 +38591,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38613,9 +38600,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_372", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38623,6 +38608,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38630,9 +38617,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_373", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38640,6 +38625,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38647,9 +38634,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_374", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38657,6 +38642,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38664,9 +38651,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_375", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38674,6 +38659,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38681,9 +38668,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_376", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38691,6 +38676,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38698,9 +38685,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_377", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38708,6 +38693,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38715,9 +38702,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_378", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38725,6 +38710,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38732,9 +38719,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_379", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38742,6 +38727,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38749,9 +38736,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_380", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38759,6 +38744,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38766,9 +38753,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_381", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38776,6 +38761,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38783,9 +38770,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_382", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38793,6 +38778,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38800,9 +38787,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_383", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38810,6 +38795,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38817,9 +38804,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_768", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38827,6 +38812,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38834,9 +38821,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_769", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38844,6 +38829,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38851,9 +38838,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_770", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38861,6 +38846,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38868,9 +38855,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_771", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38878,6 +38863,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38885,9 +38872,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_772", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38895,6 +38880,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38902,9 +38889,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_773", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38912,6 +38897,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38919,9 +38906,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_774", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38929,6 +38914,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38936,9 +38923,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_775", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38946,6 +38931,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38953,9 +38940,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_776", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38963,6 +38948,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38970,9 +38957,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_777", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38980,6 +38965,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -38987,9 +38974,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_778", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -38997,6 +38982,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39004,9 +38991,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_779", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39014,6 +38999,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39021,9 +39008,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_780", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39031,6 +39016,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39038,9 +39025,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_781", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39048,6 +39033,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39055,9 +39042,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_782", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39065,6 +39050,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39072,9 +39059,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_783", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39082,6 +39067,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39089,9 +39076,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_784", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39099,6 +39084,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39106,9 +39093,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_785", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39116,6 +39101,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39123,9 +39110,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_786", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39133,6 +39118,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39140,9 +39127,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_787", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39150,6 +39135,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39157,9 +39144,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_788", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39167,6 +39152,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39174,9 +39161,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_789", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39184,6 +39169,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39191,9 +39178,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_790", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39201,6 +39186,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39208,9 +39195,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_791", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39218,6 +39203,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39225,9 +39212,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_792", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39235,6 +39220,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39242,9 +39229,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_793", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39252,6 +39237,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39259,9 +39246,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_794", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39269,6 +39254,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39276,9 +39263,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_795", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39286,6 +39271,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39293,9 +39280,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_796", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39303,6 +39288,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39310,9 +39297,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_797", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39320,6 +39305,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39327,9 +39314,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_798", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39337,6 +39322,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39344,9 +39331,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_799", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39354,6 +39339,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39361,9 +39348,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_800", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39371,6 +39356,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39378,9 +39365,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_801", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39388,6 +39373,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39395,9 +39382,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_802", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39405,6 +39390,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39412,9 +39399,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_803", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39422,6 +39407,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39429,9 +39416,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_804", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39439,6 +39424,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39446,9 +39433,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_805", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39456,6 +39441,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39463,9 +39450,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_806", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39473,6 +39458,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39480,9 +39467,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_807", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39490,6 +39475,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39497,9 +39484,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_808", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39507,6 +39492,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39514,9 +39501,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_809", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39524,6 +39509,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39531,9 +39518,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_810", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39541,6 +39526,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39548,9 +39535,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_811", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39558,6 +39543,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39565,9 +39552,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_812", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39575,6 +39560,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39582,9 +39569,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_813", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39592,16 +39577,16 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { "data source identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1198", "data source feature": "Luminescence" } - ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_814", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + ] + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39609,6 +39594,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39616,9 +39603,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_815", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39626,6 +39611,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39633,9 +39620,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_816", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39643,6 +39628,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39650,9 +39637,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_817", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39660,6 +39645,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39667,9 +39654,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_818", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39677,6 +39662,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39684,9 +39671,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_819", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39694,6 +39679,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39701,9 +39688,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_820", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39711,6 +39696,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39718,9 +39705,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_821", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39728,6 +39713,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39735,9 +39722,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_822", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39745,6 +39730,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39752,9 +39739,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_823", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39762,6 +39747,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39769,9 +39756,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_824", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39779,6 +39764,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39786,9 +39773,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_825", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39796,6 +39781,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39803,9 +39790,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_826", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39813,6 +39798,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39820,9 +39807,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_827", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39830,6 +39815,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39837,9 +39824,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_828", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39847,6 +39832,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39854,9 +39841,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_829", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39864,6 +39849,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39871,9 +39858,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_830", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39881,6 +39866,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39888,9 +39875,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_831", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39898,6 +39883,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39905,9 +39892,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_832", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39915,6 +39900,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39922,9 +39909,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_833", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39932,6 +39917,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39939,9 +39926,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_834", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39949,6 +39934,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39956,9 +39943,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_835", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39966,6 +39951,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39973,9 +39960,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_836", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -39983,6 +39968,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -39990,9 +39977,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_837", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40000,6 +39985,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40007,9 +39994,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_838", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40017,6 +40002,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40024,9 +40011,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_839", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40034,6 +40019,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40041,9 +40028,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_840", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40051,6 +40036,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40058,9 +40045,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_841", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40068,6 +40053,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40075,9 +40062,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_842", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40085,6 +40070,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40092,9 +40079,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_843", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40102,6 +40087,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40109,9 +40096,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_844", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40119,6 +40104,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40126,9 +40113,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_845", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40136,6 +40121,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40143,9 +40130,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_846", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40153,6 +40138,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40160,9 +40147,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_847", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40170,6 +40155,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40177,9 +40164,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_848", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40187,6 +40172,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40194,9 +40181,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_849", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40204,6 +40189,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40211,9 +40198,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_850", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40221,6 +40206,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40228,9 +40215,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_851", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40238,6 +40223,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40245,9 +40232,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_852", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40255,6 +40240,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40262,9 +40249,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_853", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40272,6 +40257,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40279,9 +40266,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_854", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40289,6 +40274,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40296,9 +40283,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_855", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40306,6 +40291,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40313,9 +40300,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_856", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40323,6 +40308,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40330,9 +40317,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_857", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40340,6 +40325,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40347,9 +40334,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_858", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40357,6 +40342,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40364,9 +40351,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_859", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40374,6 +40359,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40381,9 +40368,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_860", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40391,6 +40376,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40398,9 +40385,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_861", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40408,6 +40393,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40415,9 +40402,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_862", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40425,6 +40410,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40432,9 +40419,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_863", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40442,6 +40427,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40449,9 +40436,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_864", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40459,6 +40444,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40466,9 +40453,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_865", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40476,6 +40461,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40483,9 +40470,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_866", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40493,6 +40478,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40500,9 +40487,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_867", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40510,6 +40495,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40517,9 +40504,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_868", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40527,6 +40512,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40534,9 +40521,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_869", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40544,6 +40529,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40551,9 +40538,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_870", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40561,6 +40546,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40568,9 +40555,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_871", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40578,6 +40563,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40585,9 +40572,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_872", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40595,6 +40580,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40602,9 +40589,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_873", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40612,6 +40597,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40619,9 +40606,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_874", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40629,6 +40614,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40636,9 +40623,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_875", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40646,6 +40631,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40653,9 +40640,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_876", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40663,6 +40648,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40670,9 +40657,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_877", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40680,6 +40665,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40687,9 +40674,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_878", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40697,6 +40682,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40704,9 +40691,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_879", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40714,6 +40699,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40721,9 +40708,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_880", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40731,6 +40716,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40738,9 +40725,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_881", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40748,6 +40733,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40755,9 +40742,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_882", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40765,6 +40750,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40772,9 +40759,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_883", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40782,6 +40767,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40789,9 +40776,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_884", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40799,6 +40784,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40806,9 +40793,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_885", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40816,6 +40801,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40823,9 +40810,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_886", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40833,6 +40818,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40840,9 +40827,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_887", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40850,6 +40835,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40857,9 +40844,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_888", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40867,6 +40852,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40874,9 +40861,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_889", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40884,6 +40869,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40891,9 +40878,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_890", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40901,6 +40886,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40908,9 +40895,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_891", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40918,6 +40903,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40925,9 +40912,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_892", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40935,6 +40920,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40942,9 +40929,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_893", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40952,6 +40937,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40959,9 +40946,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_894", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40969,6 +40954,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40976,9 +40963,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_895", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -40986,6 +40971,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -40993,9 +40980,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_896", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41003,6 +40988,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41010,9 +40997,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_897", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41020,6 +41005,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41027,9 +41014,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_898", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41037,6 +41022,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41044,9 +41031,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_899", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41054,6 +41039,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41061,9 +41048,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_900", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41071,6 +41056,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41078,9 +41065,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_901", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41088,6 +41073,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41095,9 +41082,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_902", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41105,6 +41090,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41112,9 +41099,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_903", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41122,6 +41107,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41129,9 +41116,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_904", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41139,6 +41124,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41146,9 +41133,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_905", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41156,6 +41141,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41163,9 +41150,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_906", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41173,6 +41158,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41180,9 +41167,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_907", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41190,6 +41175,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41197,9 +41184,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_908", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41207,6 +41192,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41214,9 +41201,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_909", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41224,6 +41209,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41231,9 +41218,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_910", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41241,6 +41226,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41248,9 +41235,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_911", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41258,6 +41243,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41265,9 +41252,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_912", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41275,6 +41260,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41282,9 +41269,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_913", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41292,6 +41277,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41299,9 +41286,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_914", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41309,6 +41294,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41316,9 +41303,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_915", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41326,6 +41311,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41333,9 +41320,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_916", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41343,6 +41328,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41350,9 +41337,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_917", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41360,6 +41345,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41367,9 +41354,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_918", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41377,6 +41362,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41384,9 +41371,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_919", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41394,6 +41379,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41401,9 +41388,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_920", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41411,6 +41396,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41418,9 +41405,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_921", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41428,6 +41413,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41435,9 +41422,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_922", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41445,6 +41430,8 @@ "value": 80.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41452,9 +41439,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_923", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41462,6 +41447,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41469,9 +41456,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_924", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41479,6 +41464,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41486,9 +41473,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_925", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41496,6 +41481,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41503,9 +41490,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_926", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41513,6 +41498,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41520,9 +41507,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_927", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41530,6 +41515,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41537,9 +41524,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_928", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41547,6 +41532,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41554,9 +41541,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_929", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41564,6 +41549,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41571,9 +41558,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_930", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41581,6 +41566,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41588,9 +41575,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_931", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41598,6 +41583,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41605,9 +41592,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_932", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41615,6 +41600,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41622,9 +41609,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_933", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41632,6 +41617,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41639,9 +41626,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_934", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41649,6 +41634,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41656,9 +41643,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_935", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41666,6 +41651,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41673,9 +41660,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_936", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41683,6 +41668,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41690,9 +41677,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_937", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41700,6 +41685,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41707,9 +41694,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_938", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41717,6 +41702,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41724,9 +41711,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_939", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41734,6 +41719,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41741,9 +41728,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_940", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41751,6 +41736,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41758,9 +41745,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_941", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41768,6 +41753,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41775,9 +41762,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_942", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41785,6 +41770,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41792,9 +41779,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_943", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41802,6 +41787,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41809,9 +41796,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_944", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41819,6 +41804,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41826,9 +41813,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_945", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41836,6 +41821,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41843,9 +41830,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_946", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41853,6 +41838,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41860,9 +41847,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_947", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41870,6 +41855,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41877,9 +41864,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_948", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41887,6 +41872,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41894,9 +41881,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_949", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41904,6 +41889,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41911,9 +41898,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_950", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41921,6 +41906,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41928,9 +41915,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_951", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41938,6 +41923,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41945,9 +41932,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_952", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41955,6 +41940,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41962,9 +41949,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_953", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41972,6 +41957,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41979,9 +41966,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_954", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -41989,6 +41974,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -41996,9 +41983,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_955", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42006,6 +41991,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42013,9 +42000,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_956", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42023,6 +42008,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42030,9 +42017,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_957", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42040,6 +42025,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42047,9 +42034,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_958", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42057,6 +42042,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42064,9 +42051,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_959", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42074,6 +42059,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42081,9 +42068,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_960", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42091,6 +42076,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42098,9 +42085,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_961", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42108,6 +42093,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42115,9 +42102,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_962", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42125,6 +42110,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42132,9 +42119,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_963", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42142,6 +42127,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42149,9 +42136,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_964", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42159,6 +42144,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42166,9 +42153,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_965", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42176,6 +42161,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42183,9 +42170,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_966", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42193,6 +42178,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42200,9 +42187,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_967", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42210,6 +42195,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42217,9 +42204,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_968", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42227,6 +42212,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42234,9 +42221,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_969", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42244,6 +42229,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42251,9 +42238,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_970", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42261,6 +42246,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42268,9 +42255,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_971", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42278,6 +42263,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42285,9 +42272,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_972", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42295,6 +42280,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42302,9 +42289,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_973", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42312,6 +42297,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42319,9 +42306,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_974", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42329,6 +42314,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42336,9 +42323,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_975", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42346,6 +42331,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42353,9 +42340,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_976", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42363,6 +42348,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42370,9 +42357,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_977", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42380,6 +42365,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42387,9 +42374,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_978", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42397,6 +42382,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42404,9 +42391,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_979", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42414,6 +42399,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42421,9 +42408,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_980", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42431,6 +42416,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42438,9 +42425,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_981", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42448,6 +42433,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42455,9 +42442,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_982", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42465,6 +42450,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42472,9 +42459,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_983", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42482,6 +42467,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42489,9 +42476,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_984", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42499,6 +42484,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42506,9 +42493,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_985", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42516,6 +42501,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42523,9 +42510,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_986", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42533,6 +42518,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42540,9 +42527,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_987", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42550,6 +42535,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42557,9 +42544,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_988", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42567,6 +42552,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42574,9 +42561,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_989", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42584,6 +42569,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42591,9 +42578,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_990", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42601,6 +42586,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42608,9 +42595,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_991", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42618,6 +42603,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42625,9 +42612,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_992", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42635,6 +42620,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42642,9 +42629,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_993", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42652,6 +42637,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42659,9 +42646,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_994", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42669,6 +42654,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42676,9 +42663,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_995", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42686,6 +42671,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42693,9 +42680,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_996", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42703,6 +42688,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42710,9 +42697,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_997", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42720,6 +42705,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42727,9 +42714,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_998", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42737,6 +42722,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42744,9 +42731,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_999", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42754,6 +42739,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42761,9 +42748,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1000", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42771,6 +42756,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42778,9 +42765,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1001", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42788,6 +42773,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42795,9 +42782,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1002", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42805,6 +42790,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42812,9 +42799,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1003", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42822,6 +42807,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42829,9 +42816,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1004", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42839,6 +42824,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42846,9 +42833,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1005", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42856,6 +42841,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42863,9 +42850,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1006", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42873,6 +42858,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42880,9 +42867,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1007", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42890,6 +42875,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42897,9 +42884,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1008", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42907,6 +42892,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42914,9 +42901,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1009", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42924,6 +42909,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42931,9 +42918,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1010", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42941,6 +42926,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42948,9 +42935,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1011", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42958,6 +42943,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42965,9 +42952,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1012", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42975,6 +42960,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42982,9 +42969,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1013", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -42992,6 +42977,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -42999,9 +42986,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1014", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43009,6 +42994,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43016,9 +43003,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1015", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43026,6 +43011,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43033,9 +43020,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1016", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43043,6 +43028,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43050,9 +43037,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1017", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43060,6 +43045,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43067,9 +43054,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1018", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43077,6 +43062,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43084,9 +43071,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1019", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43094,6 +43079,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43101,9 +43088,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1020", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43111,6 +43096,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43118,9 +43105,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1021", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43128,6 +43113,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43135,9 +43122,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1022", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43145,6 +43130,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43152,9 +43139,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1023", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43162,6 +43147,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43169,9 +43156,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1024", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43179,6 +43164,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43186,9 +43173,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1025", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43196,6 +43181,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43203,9 +43190,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1026", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43213,6 +43198,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43220,9 +43207,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1027", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43230,6 +43215,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43237,9 +43224,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1028", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43247,6 +43232,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43254,9 +43241,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1029", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43264,6 +43249,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43271,9 +43258,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1030", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43281,6 +43266,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43288,9 +43275,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1031", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43298,6 +43283,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43305,9 +43292,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1032", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43315,6 +43300,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43322,9 +43309,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1033", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43332,6 +43317,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43339,9 +43326,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1034", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43349,6 +43334,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43356,9 +43343,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1035", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43366,6 +43351,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43373,9 +43360,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1036", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43383,6 +43368,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43390,9 +43377,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1037", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43400,6 +43385,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43407,9 +43394,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1038", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43417,6 +43402,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43424,9 +43411,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1039", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43434,6 +43419,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43441,9 +43428,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1040", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43451,6 +43436,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43458,9 +43445,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1041", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43468,6 +43453,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43475,9 +43462,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1042", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43485,6 +43470,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43492,9 +43479,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1043", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43502,6 +43487,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43509,9 +43496,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1044", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43519,6 +43504,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43526,9 +43513,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1045", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43536,6 +43521,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43543,9 +43530,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1046", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43553,6 +43538,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43560,9 +43547,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1047", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43570,6 +43555,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43577,9 +43564,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1048", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43587,6 +43572,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43594,9 +43581,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1049", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43604,6 +43589,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43611,9 +43598,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1050", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43621,6 +43606,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43628,9 +43615,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1051", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43638,6 +43623,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43645,9 +43632,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1052", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43655,6 +43640,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43662,9 +43649,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1053", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43672,6 +43657,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43679,9 +43666,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1054", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43689,6 +43674,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43696,9 +43683,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1055", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43706,6 +43691,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43713,9 +43700,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1056", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43723,6 +43708,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43730,9 +43717,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1057", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43740,6 +43725,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43747,9 +43734,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1058", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43757,6 +43742,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43764,9 +43751,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1059", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43774,6 +43759,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43781,9 +43768,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1060", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43791,6 +43776,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43798,9 +43785,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1061", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43808,6 +43793,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43815,9 +43802,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1062", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43825,6 +43810,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43832,9 +43819,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1063", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43842,6 +43827,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43849,9 +43836,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1064", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43859,6 +43844,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43866,9 +43853,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1065", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43876,6 +43861,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43883,9 +43870,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1066", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43893,6 +43878,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43900,9 +43887,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1067", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43910,6 +43895,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43917,9 +43904,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1068", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43927,6 +43912,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43934,9 +43921,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1069", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43944,6 +43929,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43951,9 +43938,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1070", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43961,6 +43946,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43968,9 +43955,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1071", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43978,6 +43963,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -43985,9 +43972,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1072", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -43995,6 +43980,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44002,9 +43989,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1073", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44012,6 +43997,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44019,9 +44006,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1074", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44029,6 +44014,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44036,9 +44023,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1075", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44046,6 +44031,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44053,9 +44040,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1076", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44063,6 +44048,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44070,9 +44057,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1077", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44080,6 +44065,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44087,9 +44074,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1078", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44097,6 +44082,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44104,9 +44091,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1079", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44114,6 +44099,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44121,9 +44108,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1080", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44131,6 +44116,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44138,9 +44125,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1081", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44148,6 +44133,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44155,9 +44142,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1082", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44165,6 +44150,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44172,9 +44159,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1083", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44182,6 +44167,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44189,9 +44176,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1084", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44199,6 +44184,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44206,9 +44193,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1085", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44216,6 +44201,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44223,9 +44210,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1086", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44233,6 +44218,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44240,9 +44227,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1087", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44250,6 +44235,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44257,9 +44244,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1088", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44267,6 +44252,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44274,9 +44261,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1089", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44284,6 +44269,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44291,9 +44278,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1090", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44301,6 +44286,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44308,9 +44295,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1091", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44318,6 +44303,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44325,9 +44312,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1092", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44335,6 +44320,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44342,9 +44329,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1093", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44352,6 +44337,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44359,9 +44346,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1094", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44369,6 +44354,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44376,9 +44363,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1095", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44386,6 +44371,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44393,9 +44380,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1096", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44403,6 +44388,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44410,9 +44397,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1097", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44420,6 +44405,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44427,9 +44414,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1098", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44437,6 +44422,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44444,9 +44431,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1099", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44454,6 +44439,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44461,9 +44448,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1100", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44471,6 +44456,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44478,9 +44465,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1101", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44488,6 +44473,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44495,9 +44482,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1102", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44505,6 +44490,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44512,9 +44499,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1103", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44522,6 +44507,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44529,9 +44516,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1104", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44539,6 +44524,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44546,9 +44533,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1105", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44556,6 +44541,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44563,9 +44550,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1106", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44573,6 +44558,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44580,9 +44567,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1107", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44590,6 +44575,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44597,9 +44584,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1108", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44607,6 +44592,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44614,9 +44601,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1109", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44624,6 +44609,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44631,9 +44618,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1110", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44641,6 +44626,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44648,9 +44635,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1111", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44658,6 +44643,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44665,9 +44652,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1112", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44675,6 +44660,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44682,9 +44669,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1113", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44692,6 +44677,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44699,9 +44686,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1114", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44709,6 +44694,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44716,9 +44703,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1115", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44726,6 +44711,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44733,9 +44720,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1116", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44743,6 +44728,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44750,9 +44737,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1117", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44760,6 +44745,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44767,9 +44754,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1118", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44777,6 +44762,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44784,9 +44771,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1119", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44794,6 +44779,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44801,9 +44788,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1120", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44811,6 +44796,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44818,9 +44805,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1121", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44828,6 +44813,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44835,9 +44822,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1122", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44845,6 +44830,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44852,9 +44839,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1123", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44862,6 +44847,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44869,9 +44856,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1124", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44879,6 +44864,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44886,9 +44873,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1125", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44896,6 +44881,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44903,9 +44890,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1126", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44913,6 +44898,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44920,9 +44907,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1127", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44930,6 +44915,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44937,9 +44924,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1128", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44947,6 +44932,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44954,9 +44941,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1129", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44964,6 +44949,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44971,9 +44958,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1130", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44981,6 +44966,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -44988,9 +44975,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1131", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -44998,6 +44983,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45005,9 +44992,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1132", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45015,6 +45000,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45022,9 +45009,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1133", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45032,6 +45017,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45039,9 +45026,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1134", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45049,6 +45034,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45056,9 +45043,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1135", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45066,6 +45051,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45073,9 +45060,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1136", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45083,6 +45068,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45090,9 +45077,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1137", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45100,6 +45085,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45107,9 +45094,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1138", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45117,6 +45102,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45124,9 +45111,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1139", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45134,6 +45119,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45141,9 +45128,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1140", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45151,6 +45136,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45158,9 +45145,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1141", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45168,6 +45153,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45175,9 +45162,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1142", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45185,6 +45170,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45192,9 +45179,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1143", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45202,6 +45187,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45209,9 +45196,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1144", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45219,6 +45204,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45226,9 +45213,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1145", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45236,6 +45221,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45243,9 +45230,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1146", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45253,6 +45238,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45260,9 +45247,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1147", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45270,6 +45255,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45277,9 +45264,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1148", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45287,6 +45272,8 @@ "value": 0.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45294,9 +45281,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1149", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45304,6 +45289,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45311,9 +45298,7 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1150", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } }, { "calculated data name": "Calc 1: Crosstalk", @@ -45321,6 +45306,8 @@ "value": 40.0, "unit": "(unitless)" }, + "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", + "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1", "data source aggregate document": { "data source document": [ { @@ -45328,11 +45315,24 @@ "data source feature": "Luminescence" } ] - }, - "calculated data identifier": "PERKIN_ELMER_ENVISION_TEST_ID_1151", - "calculation description": "Calc 1: Crosstalk = Crosstalk correction where Label : 0_1 US LUM 384(1) channel 1" + } } ] + }, + "data system document": { + "ASM file identifier": "PE_Envision_luminescence_example01.json", + "data system instance identifier": "N/A", + "file name": "PE_Envision_luminescence_example01.csv", + "UNC path": "N/A", + "ASM converter name": "allotropy_perkinelmer_envision", + "ASM converter version": "0.1.56", + "software name": "EnVision Workstation", + "software version": "1.14.3049.1193" + }, + "device system document": { + "device identifier": "EnVision#Alpha_680nm", + "model number": "EnVision", + "equipment serial number": "1051017" } } }